-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
{
"name": "root",
"private": true,
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged",
"scripts": "better-scripts",
"dev": "pnpm scripts run dev",
"build": "pnpm scripts run build",
"eslint": "pnpm scripts run lints.eslint:fix",
"stylelint": "pnpm scripts run lints.stylelint:fix",
"prettier": "pnpm scripts run lints.format",
"test": "pnpm scripts run tests.test",
"coverage": "pnpm scripts run tests.coverage"
},
"keywords": [
"vue",
"vue3",
"vite",
"vitepress",
"vitest"
],
"author": "Bobby",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"better-scripts": "^0.4.3",
"esbuild-register": "^3.4.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"prettier": "^2.8.3",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recess-order": "^3.1.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"packages/**/*.{vue,js,jsx,ts,tsx}": [
"eslint --fix"
],
"packages/**/*.{scss,css}": [
"stylelint --fix"
]
},
"license": "MIT"
}