-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.88 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
{
"name": "webpack_study",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist/*",
"dll": "webpack --progress --config ./webpack/webpack.dll.js",
"build": "npm run clean && npm run dll && webpack --config ./webpack/webpack.prod.js",
"dev": "npm run clean && npm run dll && webpack-dev-server --config ./webpack/webpack.dev.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"css-loader": "^3.0.0",
"eslint": "^7.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"file-loader": "^4.1.0",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"url-loader": "^2.1.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^4.0.2"
},
"dependencies": {
"@antv/g6": "^3.5.1",
"antd": "^3.19.6",
"axios": "^0.21.2",
"mobx": "^5.15.0",
"mobx-react": "^6.1.4",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liulizhiGH/webpack-test.git"
},
"bugs": {
"url": "https://github.com/liulizhiGH/webpack-test/issues"
},
"homepage": "https://github.com/liulizhiGH/webpack-test#readme"
}