-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.85 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.85 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
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
{
"name": "react-sports-admin",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"bootstrap": "yarn || npm i",
"clean": "rimraf dist",
"start": "cross-env PORT=8888 umi dev",
"build": "umi build",
"analyze": "cross-env ANALYZE=1 umi build",
"functions:build": "netlify-lambda build ./lambda",
"functions:run": "cross-env NODE_ENV=dev netlify-lambda serve ./lambda",
"site": "npm run build && npm run functions:build",
"lint": "walrus lint",
"lint:style": "walrus stylelint --fix 'src/**/*.less' --syntax less",
"lint:commit": "walrus commitlint --env HUSKY_GIT_PARAMS",
"update-config": "walrus update-config",
"prettier": "walrus prettier",
"test": "walrus test"
},
"repository": "https://github.com/ts-react/react-admin-template.git",
"author": "stopry",
"license": "MIT",
"dependencies": {
"@alitajs/antd-plus": "^1.0.12",
"@alitajs/hooks": "^0.1.1",
"@jiumao/rc-table": "^0.0.2",
"@pansy/classnames": "^1.0.1",
"@pansy/utils": "^0.2.0",
"@uform/antd": "^0.4.4",
"@uform/core": "^0.4.4",
"antd": "^3.24.0",
"axios": "^0.19.0",
"dva": "^2.6.0-beta.14",
"js-cookie": "^2.2.0",
"lodash": "^4.17.10",
"memoize-one": "^5.0.0",
"moment": "^2.22.2",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"path-to-regexp": "^3.0.0",
"qs": "^6.7.0",
"rc-charts": "^0.2.7",
"react": "^16.8.6",
"react-container-query": "^0.11.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.8.6",
"react-lazyload": "^2.6.5",
"react-media-hook2": "^1.0.5",
"react-router-dom": "^5.2.0",
"rollbar": "^2.4.4",
"rxjs": "^6.5.3",
"scheduler": "^0.18.0",
"store": "^2.0.12",
"umi-plugin-cache-route": "^2.0.0"
},
"devDependencies": {
"@alitajs/umi-plugin-deploy-config": "^0.1.2",
"@alitajs/umi-plugin-lodash": "^0.1.0",
"@babel/runtime": "^7.4.2",
"@types/js-cookie": "^2.2.0",
"@types/lodash": "^4.14.116",
"@types/memoize-one": "^3.1.1",
"@types/node": "^10.5.7",
"@types/nprogress": "^0.0.29",
"@types/qs": "^6.5.1",
"@types/react": "^16.8.23",
"@types/react-document-title": "^2.0.2",
"@types/react-dom": "^16.8.4",
"@types/store": "^2.0.0",
"@walrus/cli": "^0.4.1",
"babel-plugin-import": "^1.12.1",
"body-parser": "^1.19.0",
"compression-webpack-plugin": "^3.0.1",
"cross-env": "^5.2.0",
"express": "^4.17.1",
"husky": "^2.2.0",
"identity-obj-proxy": "^3.0.0",
"mockjs": "^1.0.1-beta3",
"netlify-lambda": "^1.5.1",
"rimraf": "^2.6.2",
"serverless-http": "^2.0.2",
"typescript": "^3.7.2",
"umi": "^2.12.1",
"umi-plugin-react": "^1.14.4",
"umi-types": "^0.5.7"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier",
"commit-msg": "yarn lint:commit"
}
},
"engines": {
"node": ">=8.9.0"
}
}