-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "react-cli-singlepage",
"version": "1.0.0",
"description": "基于 Webpack 的 React 单页脚手架工具",
"main": "index.js",
"scripts": {
"init": "rimraf .git && git init",
"build": "npm run dll && npm run build:no-dll",
"dll": "webpack --config ./config/webpack.dll.config.js",
"dev": "webpack-dev-server --config ./config/webpack.common.js",
"build:no-dll": "webpack --env.production --config ./config/webpack.common.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Reaper622/react-cli-singlepage.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/Reaper622/react-cli-singlepage/issues"
},
"homepage": "https://gitlab.com/Reaper622/react-cli-singlepage#README",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"babel-preset-react": "^6.24.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack": "^4.32.0",
"webpack-dev-server": "^3.4.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"add-asset-html-webpack-plugin": "^3.1.3",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^3.0.1",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.8.8",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1",
"webpack-parallel-uglify-plugin": "^1.1.0"
}
}