-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 950 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 950 Bytes
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
{
"name": "bootstrap-seed",
"version": "1.0.0",
"description": "Starter bootstrap seed project",
"private": true,
"scripts": {
"build": "export NODE_ENV=development || set NODE_ENV=development&& webpack --config webpack.config.js",
"build:prod": "export NODE_ENV=production || set NODE_ENV=production&& webpack --config webpack.config.js"
},
"keywords": [
"bootsrap"
],
"author": "thebaron24",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.4.1",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"popper.js": "^1.16.1"
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}