This repository has been archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.59 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
{
"private": true,
"scripts": {
"dev:compile": "cross-env NODE_ENV=development webpack",
"dev:server": "webpack-dev-server --hot --inline",
"dev": "run-p dev:*",
"build": "webpack",
"lint:style": "stylelint **/*.scss --ignore-path .gitignore",
"lint:js": "eslint --ext .js --ignore-path .gitignore webpack.config.js .",
"lint": "run-p lint:*",
"lintfix:style": "npm run lint:style -- --fix",
"lintfix:js": "npm run lint:js -- --fix",
"lintfix": "run-p lintfix:*"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@types/node": "^17.0.0",
"autoprefixer": "^10.0.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^10.0.0",
"cross-env": "^7.0.2",
"css-loader": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"fibers": "^5.0.0",
"html-loader": "^3.0.0",
"html-webpack-plugin": "^5.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.0",
"imagemin-svgo": "^10.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^6.0.0",
"prettier": "^2.0.5",
"sass": "^1.23.7",
"sass-loader": "^12.0.0",
"stylelint": "^14.0.0",
"stylelint-config-prettier": "^9.0.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-scss": "^4.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^4.0.0"
}
}