-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
58 lines (58 loc) · 1.6 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
{
"packageManager": "[email protected]",
"engines": {
"node": "^16.0.0",
"pnpm": "^8.0.0"
},
"scripts": {
"start": "pnpm -C packages/vue-simulator-renderer start",
"build": "pnpm -r build",
"lint": "pnpm run lint:code && pnpm run lint:type",
"lint:code": "eslint ./packages/**/*.ts && stylelint ./packages/**/*.less",
"lint:type": "pnpm -r lint:type",
"prepare": "husky install"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/coverage-istanbul": "^0.31.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"postcss": "8.4.14",
"postcss-less": "^6.0.0",
"prettier": "^3.0.3",
"stylelint": "^15.10.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-standard": "^34.0.0",
"stylelint-less": "^1.0.8",
"typescript": "^5.2.2",
"vitest": "^0.31.4",
"vue": "^3.3.4"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"*.{less,css}": [
"stylelint --fix"
]
},
"author": "KNXCloud",
"license": "MIT"
}