-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 964 Bytes
/
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
{
"name": "WP_Test",
"version": "0.0.1",
"description": "Webpack test",
"scripts": {
"clean": "rimraf ./dist",
"prebuild:html": "npm run clean",
"build:html": "mkdir dist && hashmark ./src/index.html ./dist/{name}{ext}",
"build:webpack": "webpack -p --progress --colors",
"build": "npm run build:html && npm run build:webpack",
"predev": "npm run build:html",
"dev": "webpack-dev-server --hot --content-base ./dist/ --port 4000 --history-api-fallback --inline"
},
"dependencies": {
"bootstrap": "^3.3.5"
},
"devDependencies": {
"autoprefixer-loader": "^1.2.0",
"babel-core": "^5.4.7",
"babel-loader": "^5.1.3",
"css-loader": "^0.14.4",
"file-loader": "^0.8.4",
"hashmark": "^3.0.0",
"node-libs-browser": "^0.5.2",
"rimraf": "^2.3.4",
"sass-loader": "^1.0.3",
"style-loader": "^0.12.3",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.9.0",
"yargs": "^3.9.1"
}
}