-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
72
{
"name": "webpack-handlebars-bootstrap",
"version": "1.0.2",
"description": "A clean Webpack 4 + Bootstrap 4 + Handlebars frontend template.",
"scripts": {
"start": "nodemon --exec yarn watch --watch src/pages.js",
"build": "webpack --config webpack-prod.config.js --colors --optimize-minimize",
"watch": "webpack-dev-server --config webpack-dev.config.js --watch --colors -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statickidz/webpack-handlebars-bootstrap.git"
},
"keywords": [
"frontend",
"es6",
"javascript",
"bootstrap",
"handlebars",
"webpack",
"starter-kit"
],
"author": "Adrián Barrio Andrés <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/statickidz/webpack-handlebars-bootstrap/issues"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 2
}
},
"homepage": "https://github.com/statickidz/webpack-handlebars-bootstrap#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.4",
"css-loader": "^1.0.1",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"handlebars": "^4.0.12",
"handlebars-loader": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.4",
"nodemon": "^1.18.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.4.2",
"bootstrap": "^4.1.3",
"jquery": "^3.3.1",
"popper.js": "^1.14.4"
}
}