-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
109 lines (109 loc) · 3.9 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
{
"name": "react16-router4-template",
"version": "1.0.0",
"main": "index.js",
"author": "mjzhang1993 <mjzhang1993@163.com>",
"license": "MIT",
"scripts": {
"start": "node scripts/start.js",
"build": "stylelint --syntax scss src/ && node scripts/build.js",
"build:dll": "node scripts/dll.js",
"lint-staged": "lint-staged",
"lint-staged:js": "cross-env ESLINT_ENV=commit eslint --fix --ext .js,.jsx",
"lint-staged:ts": "cross-env ESLINT_ENV=commit eslint --fix --ext .ts,.tsx",
"lint-staged:style": "stylelint --fix --syntax scss",
"check:tsc": "tsc -p ./tsconfig.prod.json",
"check:dll": "node scripts/dll-version-check.js",
"eslintFix": "eslint --fix src/**/*.tsx --fix src/**/*.ts",
"prepare": "husky install"
},
"homepage": ".",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@reduxjs/toolkit": "^1.6.0",
"antd": "^4.16.6",
"axios": "^0.21.1",
"core-js-bundle": "^3.15.1",
"hoist-non-react-statics": "^3.3.2",
"immer": "^9.0.3",
"lodash": "^4.17.21",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-classes": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/lodash": "^4.14.170",
"@types/qs": "^6.9.6",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router-dom": "^5.1.7",
"@types/validator": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"chalk": "^4.1.1",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.4",
"html-webpack-plugin": "^5.3.2",
"html-webpack-tags-plugin": "^3.0.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.2",
"postcss": "^8.3.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.0",
"postcss-object-fit-images": "^1.1.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"shelljs": "^0.8.4",
"style-loader": "^3.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"terser-webpack-plugin": "^5.1.4",
"thread-loader": "^3.0.4",
"typescript": "^4.2.4",
"webpack": "^5.41.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0",
"yargs": "^17.0.1"
},
"engines": {
"node": ">=12.13.0"
}
}