-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "lab_boilerplate",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "node express.js",
"build": "rm -f build && cross-env NODE_ENV=production webpack --progress",
"lint": "eslint src/js",
"stylelint": "stylelint src/css"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-preset-env": "^2.0.0-beta.2",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"express": "^4.21.0",
"file-loader": "^6.0.0",
"html-replace-webpack-plugin": "^2.5.6",
"html-webpack-plugin": "^4.3.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"stylelint": "^13.9.0",
"stylelint-config-standard": "^20.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}