-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
58
59
60
61
62
{
"private": true,
"version": "0.0.3",
"scripts": {
"start": "umi dev",
"build": "cross-env UMI_ENV=production umi build",
"postinstall": "umi generate tmp",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0 -s",
"commit": "npx cz",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,md,json}": [
"prettier --write",
"git add"
],
"src/**/*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"dependencies": {
"@ant-design/pro-layout": "^6.5.0",
"axios": "^0.21.1",
"echarts": "^5.0.2",
"js-cookie": "^2.2.1",
"osdoc-lint": "^1.0.6",
"react": "17.x",
"react-dom": "17.x",
"redux-logger": "^3.0.6",
"umi": "^3.4.3"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/js-cookie": "^2.2.6",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/redux-logger": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.4.3",
"commitizen": "^4.2.1",
"commitlint": "^12.1.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.23.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.0",
"typescript": "^4.1.2"
}
}