-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 994 Bytes
/
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
{
"name": "middleman-webpack",
"version": "1.0.0",
"license": "MIT",
"browserslist": ">0.25%, not ie 11, not op_mini all, not dead",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.0.6",
"css-loader": "^4.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"postcss-loader": "^3.0.0",
"style-loader": "^1.1.3",
"stylelint": "^13.6.1",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-scss": "^3.18.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"scripts": {
"start": "NODE_ENV=development ./node_modules/webpack/bin/webpack.js --watch -d --color",
"build": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --bail -p"
},
"dependencies": {
"bootstrap": "^4.5.2",
"core-js": "^3.6.4",
"jquery": "^3.6.0",
"popper.js": "^1.16.1",
"terser-webpack-plugin": "^3.0.8"
}
}