-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "gamium-workspace",
"scripts": {
"build": "yarn workspaces foreach --exclude 'dogu' --jobs unlimited -ptvi run build",
"clean": "yarn workspaces foreach --jobs unlimited -ptvi run clean",
"format": "yarn workspaces foreach --jobs unlimited -ptvi run format",
"newbie": "yarn install && yarn newbie:husky",
"newbie:husky": "husky install",
"rebuild": "yarn clean && yarn build",
"upgrade:version": "yarn workspace version run version upgrade",
"test": "yarn workspaces foreach --jobs unlimited -ptvi run test"
},
"workspaces": {
"packages": [
"protocol",
"client/typescript/gamium",
"utils/typescript/*",
"docs",
"projects/*"
]
},
"devDependencies": {
"@types/node": "20.1.4",
"ansi-styles": "6.2.1",
"husky": "8.0.0",
"lint-staged": "13.2.2",
"organize-imports-cli": "0.10.0",
"pinst": "3.0.0",
"prettier": "2.8.8",
"prettier-package-json": "2.8.0",
"typescript": "4.7.4"
},
"lint-staged": {
"*.ts": [
"prettier --write --editorconfig"
]
},
"packageManager": "[email protected]"
}