-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"private": true,
"name": "x6-graph",
"version": "1.1.4",
"scripts": {
"start": "umi dev",
"build": "umi build",
"deploy": "bash deploy.sh",
"lint": "yarn lint:ts",
"lint:ts": "tslint -c tslint.json -p tsconfig.json --fix",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "[email protected]:Anonymity94/x6-graph.git"
},
"homepage": "http://anonymity94.github.io/x6-graph",
"author": "[email protected]",
"dependencies": {
"@antv/x6": "^1.13.4",
"@antv/x6-react-components": "^1.1.1",
"antd": "^4.4.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-test-renderer": "^16.0.3",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.2.19",
"eslint": "^7.16.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.11.1",
"lint-staged": "^10.5.3",
"react-test-renderer": "^16.7.0",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^5.0.0",
"umi": "^3.2.19"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"tslint -c tslint.json -p ./tsconfig.json --fix"
],
"*.{js,jsx}": [
"eslint --fix"
]
},
"engines": {
"node": ">=8.0.0"
}
}