-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "mp",
"version": "1.0.0",
"description": "multiple page es6",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev && webpack-dev-server --config ./config/webpack.config.dev.js --open",
"build": "cross-env NODE_ENV=prod && webpack --config ./config/webpack.config.prod.js -p",
"lint": "cross-env NODE_ENV=lint && webpack-dev-server --open",
"server": "http-server ./dist -p 8888 -o",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^7.1.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.1.4",
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"postcss-loader": "^2.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0"
}
}