-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "wview",
"version": "0.0.1",
"private": false,
"scripts": {
"dev": "pnpm -C packages/wview-components dev",
"build": "pnpm -C packages/wview-components build",
"docs:dev": "pnpm build && pnpm -C packages/document dev",
"docs:build": "pnpm -C packages/wview-components build && pnpm -C packages/document build",
"docs:preview": "pnpm -C packages/document preview",
"preview": "pnpm -C packages/wview-components preview",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"license": "MIT",
"lint-staged": {
"packages/**/*.{js,ts,vue,jsx,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.51.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^29.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.9.0",
"glob": "^8.1.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"vue-eslint-parser": "^9.1.0"
}
}