-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"private": true,
"version": "3.2.38",
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"app": "pnpm -F tdp-app-runtime",
"editor": "pnpm -F tdp-editor",
"components": "pnpm -F tdp-editor-components",
"common": "pnpm -F tdp-editor-common",
"types": "pnpm -F tdp-editor-types",
"type-check": "vue-tsc --noEmit -p ./tsconfig.vitest.json --composite false",
"lint": "eslint \"packages/*/src/**\" --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx --fix --ignore-path ./.eslintignore",
"lint:staged": "lint-staged"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@types/node": "^16.18.21",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.36.0",
"eslint-plugin-vue": "^9.10.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"typescript": "~4.7.4",
"vitest": "^0.15.2",
"vue-tsc": "^0.38.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}