-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
47 lines (47 loc) · 1.14 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
{
"private": true,
"scripts": {
"start": "umi dev",
"build": "umi build",
"postinstall": "umi generate tmp",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx "
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^4.1.0",
"@antv/g2": "^4.0.9",
"@antv/x6": "^1.7.5",
"@types/react-beautiful-dnd": "^13.0.0",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.1.3",
"antd": "^4.2.0",
"bizcharts": "^4.0.12",
"echarts": "^4.8.0",
"gg-editor": "^3.1.3",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.12.0",
"umi": "^3.1.3",
"umi-request": "^1.2.19",
"yorkie": "^2.0.0"
},
"devDependencies": {
"@umijs/fabric": "^2.0.8",
"eslint": "^6.8.0"
}
}