-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.23 KB
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
{
"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"
},
"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.0.2",
"@ant-design/pro-layout": "^6.5.0",
"@ant-design/pro-table": "^2.37.1",
"@antv/data-set": "^0.11.0",
"@umijs/preset-react": "1.x",
"antd": "^4.16.0",
"babel-plugin-import": "^1.13.3",
"classnames": "^2.2.6",
"highcharts": "^9.1.0",
"highcharts-react-official": "^3.0.0",
"json2csv": "^5.0.6",
"mockjs": "^1.1.0",
"path-to-regexp": "^6.2.0",
"umi": "^3.5.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@umijs/preset-ui": "^2.2.9",
"@umijs/test": "^3.4.22",
"lint-staged": "^10.0.7",
"prettier": "^2.2.0",
"react": "17.x",
"react-dom": "17.x",
"typescript": "^4.1.2",
"yorkie": "^2.0.0"
}
}