-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1020 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
37
{
"name": "webpack-template",
"version": "1.0.0",
"description": "Empty webpack project with $ and Bootsrtap",
"main": "src/js/app.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"dev": "webpack-dev-server --mode development --open --hot",
"production": "webpack --mode production"
},
"keywords": [],
"author": "Dmitrii Kholodov",
"license": "MIT",
"devDependencies": {
"css-loader": "^1.0.1",
"node-sass": "^4.10.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"bootstrap": "^4.1.3",
"jquery": "^3.3.1",
"popper.js": "^1.14.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DmitriiKholodov/webpack-template.git"
},
"bugs": {
"url": "https://github.com/DmitriiKholodov/webpack-template/issues"
},
"homepage": "https://github.com/DmitriiKholodov/webpack-template#readme"
}