This repository has been archived by the owner on Jul 2, 2023. 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.54 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": "vite",
"build": "typecheck . && vite build",
"lint:js": "eslint --ext .ts,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,scss} --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"lintfix:js": "eslint --fix --ext .ts,.vue --ignore-path .gitignore .",
"lintfix:style": "stylelint --fix **/*.{vue,scss} --ignore-path .gitignore",
"lintfix": "yarn lintfix:js && yarn lintfix:style"
},
"lint-staged": {
"*.{ts,vue}": "eslint",
"*.{scss,vue}": "stylelint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"vue": "^3.0.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"@vue/compiler-sfc": "^3.0.2",
"@vue/eslint-config-typescript": "^7.0.0",
"@vuedx/typecheck": "^0.2.4-0",
"@vuedx/typescript-plugin-vue": "^0.2.4-0",
"commitlint": "^11.0.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"sass": "^1.29.0",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.3.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.1.2",
"vite": "^1.0.0-rc.9"
}
}