forked from Manchenko/Kolesa-Upgrade-FE-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 908 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
34
35
36
37
38
39
40
{
"name": "vite-project",
"version": "0.0.0",
"license": "MIT",
"repository": "https://github.com/Manchenko/Kolesa-Upgrade-FE-2021.git",
"scripts": {
"dev": "vite --open",
"build": "vite build",
"serve": "vite preview",
"prepare": "npx simple-git-hooks"
},
"devDependencies": {
"eclint": "^2.8.1",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "^2.22.1",
"lint-staged": "^11.1.2",
"sass": "^1.41.1",
"simple-git-hooks": "^2.6.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"vite": "^2.5.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eclint fix",
"eslint --fix"
],
"*.{scss,css,vue}": [
"eclint fix",
"stylelint fix"
],
".editorconfig": [
"eclint fix"
]
}
}