-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.05 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
{
"name": "@ogfcommunity/variants-monorepo",
"version": "1.0.0",
"description": "A place to play Go variants, brought to you by the OGF community.",
"main": "index.js",
"license": "AGPL-3.0",
"packageManager": "[email protected]",
"scripts": {
"start": "yarn workspaces foreach -pi run start",
"build": "yarn workspaces foreach -pti run build",
"test": "yarn workspaces foreach -pti run test",
"lint:check": "yarn workspaces foreach -pti run lint:check",
"lint": "yarn workspaces foreach -pti run lint",
"start:server": "yarn workspace @ogfcommunity/variants-server run start",
"start:client": "yarn workspace @ogfcommunity/variants-vue-client run start",
"start:shared": "yarn workspace @ogfcommunity/variants-shared run start",
"new-variant": "node ./scripts/create-new-app.js",
"postinstall": "husky"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"prettier": {
"trailingComma": "all",
"endOfLine": "lf"
},
"dependencies": {
"@types/jsdom": "^21.1.7",
"husky": "^9.1.7"
}
}