-
-
Notifications
You must be signed in to change notification settings - Fork 485
/
Copy pathpackage.json
74 lines (74 loc) · 2.73 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
73
74
{
"name": "bootstrap-loader-css-modules-example",
"version": "0.0.1",
"description": "Example usage of bootstrap-loader and CSS Modules",
"engines": {
"node": "10"
},
"scripts": {
"postinstall":
"rm -rf node_modules/bootstrap-loader && mkdir -p node_modules/bootstrap-loader && cd ../../ && yarn run build && cd - && cp -r ../../{package.json,loader.js,no-op.js,extractStyles.js,.bootstraprc-3-default,.bootstraprc-4-default,lib} node_modules/bootstrap-loader/ && cd node_modules/bootstrap-loader && yarn install --production",
"start": "NODE_ENV=development nodemon --watch server.dev.js server.dev.js",
"clean": "rm -rf public/",
"cleanrc": "rm .bootstraprc || echo 'no .bootstraprc file to delete'",
"build": "npm run clean && NODE_ENV=production webpack --config webpack.prod.config.js",
"prod": "npm run build && nodemon --watch server.prod.js server.prod.js",
"bs3:setup": "cp -f .bootstraprc-3-example .bootstraprc",
"bs4:setup": "cp -f .bootstraprc-4-example .bootstraprc",
"bs3:dev": "npm run bs3:setup && npm start",
"bs4:dev": "npm run bs4:setup && npm start",
"bs3:prod": "npm run bs3:setup && npm run prod",
"bs4:prod": "npm run bs4:setup && npm run prod"
},
"authors": [
"Justin Gordon <[email protected]> (https://github.com/justin808)",
"Alex Fedoseev <[email protected]> (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.3.1",
"bootstrap-sass": "^3.3.7",
"font-awesome": "^4.7.0",
"react": "16.3.2",
"react-dom": "16.3.3",
"tether": "^1.3.7"
},
"devDependencies": {
"autoprefixer": "8.4.1",
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "7.1.4",
"babel-plugin-react-transform": "3.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "0.28.11",
"express": "^4.14.0",
"file-loader": "1.1.11",
"font-awesome-loader": "^1.0.1",
"mini-css-extract-plugin": "0.4.0",
"node-sass": "^7.0.0",
"nodemon": "^1.11.0",
"postcss-loader": "2.1.5",
"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": "7.0.1",
"style-loader": "0.21.0",
"url-loader": "1.0.1",
"webpack": "4.8.1",
"webpack-cli": "2.1.3",
"webpack-dev-middleware": "3.1.3",
"webpack-hot-middleware": "^2.13.2"
}
}