forked from Wanderduene/quickstart-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 990 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 990 Bytes
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
{
"name": "quickstart-webpack",
"version": "1.0.0",
"description": "A scaffold project for a Webpack based webapplication, without the overhead of specific libraries.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --config webpack.dev.js",
"clean": "del-cli dist/bundle.js dist/bundle.js.map",
"lint": "eslint ./src --ext .js,.jsx"
},
"author": "",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.11",
"del-cli": "^1.1.0",
"eslint": "^5.1.0",
"file-loader": "^1.1.11",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.2",
"url-loader": "^1.0.1",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^3.0.0",
"webpack-merge": "^4.1.2"
}
}