-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.06 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
67
68
69
70
71
{
"name": "webpack3-starter",
"version": "1.0.0",
"description": "A simple and reliable webpack3 starter kit for your web adventures needs.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"kickstart": "node kickstarter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lifenautjoe/webpack3-starter.git"
},
"keywords": [
"webpack3",
"starter",
"starter-kit",
"kit",
"webpack",
"seed",
"webpack-seed",
"webpack3-seed",
"webpack3-boilerplate",
"boilerplate",
"javascript",
"js",
"es6",
"es6-starter",
"js-starter",
"es6-starter-kit"
],
"author": "Joel Hernandez",
"license": "ISC",
"bugs": {
"url": "https://github.com/lifenautjoe/webpack3-starter/issues"
},
"homepage": "https://github.com/lifenautjoe/webpack3-starter#readme",
"dependencies": {
"normalize.css": "^7.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^3.0.1",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"inquirer": "^3.3.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.6",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.2",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.6.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"kickstartDependencies": [
"inquirer",
"rimraf"
]
}