-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
122 lines (122 loc) · 3.49 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "admin-project",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"bootstrap": "yarn || npm i",
"clean": "rimraf dist",
"start": "cross-env API_ENV=test DEBUG=app:* PORT=8080 MOCK=none umi dev",
"build": "umi build",
"build:web": "umi build && cd ./dist && serve -s ",
"lint-staged": "lint-staged",
"lint:style": "stylelint \"src/**/*.less\" --syntax less",
"tslint": "npm run tslint:fix",
"tslint:fix": "tslint --fix 'src/**/*.ts*'",
"test": "umi test",
"test:component": "umi test ./src/components",
"prettier": "node ./scripts/prettier.js",
"docker:build": "./scripts/docker-build.sh"
},
"license": "MIT",
"dependencies": {
"@antv/data-set": "^0.10.2",
"antd": "^3.19.8",
"axios": "^0.19.0",
"bizcharts": "^3.5.4",
"bizcharts-plugin-slider": "^2.1.1-beta.1",
"braft-editor": "^2.3.7",
"classnames": "^2.2.6",
"debug": "^4.1.1",
"dva": "^2.4.1",
"js-cookie": "^2.2.0",
"lodash": "^4.17.11",
"lodash-decorators": "^6.0.1",
"memoize-one": "^5.0.4",
"moment": "^2.24.0",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"path-to-regexp": "^3.0.0",
"prop-types": "^15.7.2",
"qs": "^6.7.0",
"rc-animate": "^2.8.3",
"react": "^16.8.6",
"react-container-query": "^0.11.0",
"react-copy-to-clipboard": "^5.0.1",
"react-document-title": "^2.0.3",
"react-dom": "^16.8.6",
"react-image-crop": "^8.0.5",
"react-intl": "^2.9.0",
"react-media": "^1.9.2",
"react-text-mask": "^5.4.3",
"react-transition-group": "^4.1.1",
"rollbar": "^2.7.1",
"store": "^2.0.12",
"xlsx": "^0.14.3",
"typescript": "^3.5.2",
"umi": "^2.7.2",
"umi-plugin-react": "^1.8.2"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@types/classnames": "^2.2.8",
"@types/draft-js": "^0.10.33",
"@types/jest": "^24.0.15",
"@types/js-cookie": "^2.2.2",
"@types/lodash": "^4.14.134",
"@types/memoize-one": "^4.1.1",
"@types/node": "^12.0.10",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.5.3",
"@types/react": "^16.8.22",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-document-title": "^2.0.3",
"@types/react-dom": "^16.8.4",
"@types/react-image-crop": "^8.0.0",
"@types/react-intl": "^2.3.18",
"@types/react-text-mask": "^5.4.6",
"@types/store": "^2.0.2",
"@types/webpack-env": "^1.13.9",
"chalk": "^2.4.2",
"check-prettier": "^1.0.3",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.1",
"husky": "^2.5.0",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^5.0.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"mockjs": "^1.0.1-beta3",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"svg-sprite-loader": "^4.1.6",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"webpack": "^4.35.0"
},
"engines": {
"node": ">=10.0.0"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,jsx,less}": [
"node ./scripts/lint-prettier.js",
"git add"
],
"**/*.less": "stylelint --syntax less"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}