-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.23 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.23 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
98
99
100
101
102
103
104
{
"name": "webpack-react-project",
"version": "1.0.0",
"description": "{{ description }}",
"exports": "index.js",
"scripts": {
"start": "npm run lint && cross-env NODE_ENV=local webpack serve --config=webpack-dev.config.js",
"qa": "npm run lint && cross-env NODE_ENV=qa webpack serve --config=webpack-dev.config.js",
"build": "npm run lint && cross-env NODE_ENV=production webpack --config=webpack-pro.config.js --progress",
"lint": "eslint src --fix"
},
"dependencies": {
"antd": "^4.16.13",
"mobx": "^6.3.5",
"mobx-react": "^7.2.0",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"wbaxios": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/helper-module-imports": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@babel/runtime-corejs3": "^7.15.4",
"@soda/friendly-errors-webpack-plugin": "^1.8.0",
"animate.css": "^4.1.1",
"autoprefixer": "^10.3.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"cssnano": "^5.0.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"file-loader": "^6.2.0",
"highlight.js": "^11.2.0",
"history": "^5.0.1",
"html-webpack-plugin": "^5.4.0",
"less": "^4.1.2",
"less-loader": "^10.1.0",
"marked": "^3.0.7",
"mini-css-extract-plugin": "^2.4.2",
"node-notifier": "^10.0.0",
"node-object-hash": "^2.3.10",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"react-loadable": "^5.5.0",
"resolve-url-loader": "^4.0.0",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.3.0",
"svg-sprite-loader": "^6.0.9",
"svg-transform-loader": "^2.0.13",
"svgo-loader": "^3.0.0",
"terser-webpack-plugin": "^5.2.4",
"thread-loader": "^3.0.4",
"url-loader": "^4.1.1",
"webpack": "^5.58.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"yargs": "^17.2.1"
},
"keywords": [
"webpack",
"react",
"project",
"template"
],
"author": "{{ author }}",
"license": "ISC",
"engines": {
"node": " >=14.13.1 || >=16.0.0"
}
}