-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.62 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.62 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
42
43
44
{
"name": "simple-html-webpack-starter-project",
"version": "1.0.0",
"description": "A simple boilerplate for a simple webpack project (sass, html, templates)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start":
"NODE_ENV=development && webpack-dev-server --config ./config/webpack.config.js -d --history-api-fallback --hot --inline --progress --colors --port 3000 --open",
"build":
"rm -rf dist && webpack --define process.env.NODE_ENV=production --config ./config/webpack.config.js --progress --colors",
"serve": "npm run build && ./node_modules/serve/bin/serve.js dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sheldonj/simple-html-webpack-starter-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sheldonj/simple-html-webpack-starter-project/issues"
},
"homepage": "https://github.com/sheldonj/simple-html-webpack-starter-project#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"babel-loader": "8.0.0-beta.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^0.28.4",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.28.0",
"imagemin-webpack-plugin": "^1.5.2",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.5",
"sass-loader": "^6.0.5",
"serve": "^6.4.1",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.4.5",
"webpack-manifest-plugin": "^1.3.2"
}
}