-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "front-env",
"version": "1.0.0",
"description": "front develop environment",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config=webpack.config.js",
"watch": "webpack --config=webpack.config.js --watch",
"server": "node server/server.js",
"start": "webpack-dev-server --open"
},
"keywords": [
"node",
"webpack",
"frontend",
"js",
"frameset"
],
"author": "Qiang.Deng",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"express": "^4.16.3",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.0",
"webpack": "^4.0.1",
"webpack-browser-plugin": "^1.0.20",
"webpack-cli": "^2.0.9",
"webpack-dev-middleware": "^3.2.0",
"webpack-dev-server": "^3.1.7",
"xml-loader": "^1.2.1"
},
"dependencies": {}
}