forked from shakacode/bootstrap-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.5 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.5 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "bootstrap-loader-css-modules-example",
"version": "0.0.1",
"description": "Example usage of bootstrap-loader and CSS Modules",
"engines": {
"node": "5"
},
"scripts": {
"start": "nodemon --watch server.dev.js server.dev.js",
"lint": "eslint --ext .js,.jsx .",
"clean": "rm -rf public/",
"cleanrc": "rm .bootstraprc || echo 'no .bootstraprc file to delete'",
"build": "npm run clean && webpack --config webpack.prod.config.js",
"prod": "NODE_ENV=production npm run build && nodemon --watch server.prod.js server.prod.js",
"post-install": "echo 'module.exports = {}' >> node_modules/bootstrap-loader/postcss.config.js",
"bs3": "npm run cleanrc && BOOTSTRAPRC_LOCATION=.bootstraprc-3-example nodemon --watch app/markup --ext html server.dev.js",
"bs4": "npm run cleanrc && BOOTSTRAPRC_LOCATION=.bootstraprc-4-example nodemon --watch app/markup --ext html server.dev.js",
"bs3:prod": "npm run cleanrc && export BOOTSTRAPRC_LOCATION=.bootstraprc-3-example && npm run build && npm run prod",
"bs4:prod": "npm run cleanrc && export BOOTSTRAPRC_LOCATION=.bootstraprc-4-example && npm run build && npm run prod",
"bs3:default:setup": "cp -f .bootstraprc-3-example .bootstraprc",
"bs4:default:setup": "cp -f .bootstraprc-4-example .bootstraprc",
"bs3:default:dev": "npm run bs3:default:setup && npm start",
"bs4:default:dev": "npm run bs4:default:setup && npm start",
"bs3:default:prod": "npm run bs3:default:setup && npm run prod",
"bs4:default:prod": "npm run bs4:default:setup && npm run prod",
"install-local": "rm -rf node_modules/bootstrap-loader && npm install --save-dev ../.. && npm run post-install"
},
"authors": [
"Justin Gordon <justin.gordon@gmail.com> (https://github.com/justin808)",
"Alex Fedoseev <alex.fedoseev@gmail.com> (https://github.com/alexfedoseev)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shakacode/bootstrap-loader"
},
"bugs": {
"url": "https://github.com/shakacode/bootstrap-loader/issues"
},
"keywords": [
"bootstrap",
"css modules",
"webpack"
],
"dependencies": {
"body-parser": "^1.15.2",
"bootstrap": "4.0.0-beta",
"bootstrap-sass": "^3.3.7",
"extract-text-webpack-plugin": "^2.1.0",
"font-awesome": "^4.7.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"tether": "^1.3.7"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"bootstrap-loader": "file:../..",
"css-loader": "^0.26.0",
"eslint": "^3.10.2",
"eslint-config-shakacode": "^13.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"express": "^4.14.0",
"file-loader": "^0.10.0",
"font-awesome-loader": "^1.0.1",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"postcss-loader": "^1.1.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.3",
"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.10.1",
"webpack-hot-middleware": "^2.13.2"
},
"peerDependencies": {
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0"
}
}