-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
76 lines (76 loc) · 2.25 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
{
"name": "react-admin",
"version": "2.0.0",
"description": "react development template",
"main": "index.js",
"repository": "[email protected]:pansyjs/react-admin.git",
"author": "kang <[email protected]>",
"license": "MIT",
"scripts": {
"analyze": "cross-env ANALYZE=1 umi build",
"start": "npm run start:dev",
"build": "umi build",
"test": "walrus test",
"prettier": "prettier -c --write \"src/**/*\"",
"start:dev": "cross-env REACT_APP_ENV=dev umi dev",
"start:no-mock": "cross-env MOCK=none umi dev",
"lint:es": "walrus eslint",
"lint:style": "walrus stylelint --fix 'src/**/*.less' --syntax less",
"lint:commit": "walrus commitlint --env HUSKY_GIT_PARAMS"
},
"dependencies": {
"@alitajs/antd-plus": "^2.5.0",
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-card": "^1.18.30",
"@ant-design/pro-layout": "^6.32.12",
"@ant-design/pro-table": "^2.63.4",
"@formily/antd": "^2.0.10",
"@formily/antd-components": "^1.3.17",
"@formily/core": "^2.0.10",
"@formily/react": "^2.0.10",
"@pansy/policy": "^0.5.0",
"@pansy/react-amap": "2.12.3",
"@pansy/react-charts": "^1.0.0",
"@pansy/react-hooks": "^0.9.2",
"@pansy/react-watermark": "^3.1.8",
"antd": "^4.18.6",
"classnames": "^2.3.1",
"moment": "^2.29.1",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.2.2",
"styled-components": "^5.3.3",
"umi": "^3.5.20",
"umi-request": "^1.4.0",
"use-merge-value": "^1.0.2"
},
"devDependencies": {
"@alitajs/umi-plugin-antd-plus": "0.2.0",
"@alitajs/umi-plugin-console-version": "0.4.0",
"@alitajs/umi-preset-react": "0.3.0",
"@types/classnames": "2.3.1",
"@types/numeral": "2.0.2",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/styled-components": "5.1.22",
"@walrus/cli": "1.3.4",
"@walrus/plugin-release": "1.14.3",
"@walrus/preset-lint": "1.1.8",
"better-mock": "0.3.2",
"cross-env": "7.0.3",
"husky": "5.2.0",
"typescript": "4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier",
"commit-msg": "yarn lint:commit"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie < 10"
]
}