-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "@aoi-js/workspace",
"packageManager": "[email protected]",
"license": "AGPL-3.0-only",
"private": true,
"workspaces": [
"apps/*",
"libs/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitepress": "^1.0.0-rc.36",
"zx": "^7.2.3"
},
"scripts": {
"postinstall": "husky install",
"all:build": "yarn workspaces foreach -Apt --exclude @aoi-js/frontend run build",
"all:check-lint": "yarn workspaces foreach --since -p run lint",
"all:check-format": "yarn workspaces foreach --since -p run format",
"all:check-type": "yarn workspaces foreach --since -Rtp run type-check",
"all:check": "concurrently \"yarn:all:check-*\"",
"git:precommit": "run all:check",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
}
}