-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1015 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
33
34
35
36
{
"name": "webpack-project-scaffold",
"version": "0.0.1",
"description": "Webpack project scaffold",
"license": "",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --config ./webpack.config.js --mode development --host 0.0.0.0"
},
"devDependencies": {
"babel-loader": "^7.1.4",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.1.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"bourbon": "^5.0.0",
"bourbon-neat": "^2.1.0",
"jquery": "^3.3.1",
"modaal": "^0.3.1",
"normalize.css": "^8.0.0",
"scrollreveal": "^3.4.0"
}
}