-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.41 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.41 KB
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": "ui-auto-monorepo",
"author": "fhswar",
"email": "fhswar0504@163.com",
"private": true,
"version": "1.0.0",
"description": "ui-auto",
"keywords": [
"koa",
"vue3",
"typescript"
],
"license": "ISC",
"workspaces": [
"client",
"server",
"server-worker",
"shared"
],
"engines": {
"node": ">=16.14.2"
},
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:server": "cd server && npm run dev",
"dev:server-worker": "cd server-worker && npm run dev",
"lint": "npm-run-all --parallel lint:*",
"lint:client": "cd client && npm run lint",
"lint:chief": "cd server && npm run lint",
"lint:worker": "cd server-worker && npm run lint",
"lint:shared": "cd shared && npm run lint",
"prepare": "husky install"
},
"dependencies": {
"apidoc": "^0.51.1",
"dayjs": "^1.11.3",
"deasync": "^0.1.26",
"prepend-file": "^2.0.1"
},
"devDependencies": {
"@types/apidoc": "^0.50.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"npm-run-all": "^4.1.5"
},
"lint-staged": {
"client/**/*.{js,ts,vue}": [
"npm run lint:client"
],
"server/**/*.{js,ts}": [
"npm run lint:chief"
],
"server-worker/**/*.{js,ts}": [
"npm run lint:worker"
],
"shared/**/*.{js,ts}": [
"npm run lint:shared"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}