forked from shakacode/bootstrap-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "bootstrap-loader-example",
"version": "1.0.0",
"description": "Example usage of bootstrap-loader with multiple entries with their own config",
"main": "server.prod.js",
"engines": {
"node": "5"
},
"scripts": {
"start": "nodemon --watch app/markup --ext html server.dev.js",
"clean": "rm -rf public/",
"lint": "eslint --ext .js,.jsx .",
"build": "npm run clean && webpack --config webpack.prod.config.js",
"prod": "nodemon --watch app/markup --ext html server.prod.js",
"post-install": "echo 'module.exports = {}' >> node_modules/bootstrap-loader/postcss.config.js",
"bs:prod": "npm run build && npm run prod",
"install-local": "rm -rf node_modules/bootstrap-loader && npm install --save-dev ../.. && npm run post-install"
},
"repository": {
"type": "git",
"url": "https://github.com/shakacode/bootstrap-loader"
},
"keywords": [
"bootstrap",
"webpack"
],
"authors": [
"Axel Navarro <[email protected]> (https://github.com/navarroaxel)"
],
"license": "MIT",
"dependencies": {
"bootstrap": "4.0.0-beta",
"bootstrap-sass": "^3.3.7",
"express": "^4.14.0",
"font-awesome": "^4.7.0",
"jquery": "^3.1.1",
"nodemon": "^1.11.0",
"tether": "^1.3.7"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"body-parser": "^1.15.2",
"bootstrap-loader": "file:../..",
"css-loader": "^0.26.0",
"eslint": "^3.10.2",
"eslint-config-shakacode": "^13.1.0",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^2.0.0-beta",
"file-loader": "^0.10.0",
"font-awesome-loader": "^1.0.1",
"imports-loader": "^0.7.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"postcss-loader": "^1.1.1",
"resolve-url-loader": "^2.0.0",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"peerDependencies": {
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0"
}
}