-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 989 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
{
"name": "webpack-starter",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --watch",
"build": "node_modules/.bin/webpack --config webpack.config.js",
"watch" : "node_modules/.bin/webpack --watch --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"private": true,
"devDependencies": {
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"font-awesome": "^4.7.0",
"handlebars-loader": "^1.5.0",
"html-webpack-include-assets-plugin": "0.0.5",
"html-webpack-plugin": "^2.29.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"style-loader": "^0.18.2",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"handlebars": "^4.0.10",
"jquery": "^3.2.1"
}
}