-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"build": "NODE_ENV=production webpack",
"lint": "yarn lint:js && yarn lint:style",
"lint:js": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{css,scss} --ignore-path .gitignore",
"postinstall": "husky install",
"fix": "yarn lint:js --fix && yarn lint:style --fix"
},
"dependencies": {
"autoprefixer": "^10.3.6",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mini-css-extract-plugin": "^2.3.0",
"modern-css-reset": "^1.4.0",
"postcss": "^8.3.8",
"postcss-loader": "^6.1.1",
"prettier": "^2.4.1",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.21.0",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss}": [
"prettier --write",
"stylelint --fix --allow-empty-input"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"private": true
}