-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1009 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1009 Bytes
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
{
"name": "@nova/monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"scripts"
]
},
"scripts": {
"beachball": "beachball -b origin/main",
"build": "lage build",
"change": "yarn beachball change",
"checkchange": "yarn beachball check",
"ci": "yarn lage build types test lint && yarn checkchange",
"clean": "git clean -fdx -e node_modules",
"postinstall": "yarn playwright install --with-deps chromium",
"lage": "lage",
"lint": "lage lint",
"prepare": "lage prepare",
"release": "yarn beachball publish",
"test": "lage test",
"types": "lage types"
},
"resolutions": {
"**/relay-compiler-language-graphitation/typescript": "<5",
"immutable": "^3.8.3"
},
"devDependencies": {
"beachball": "2.31.12",
"lage": "2.14.0",
"prettier": "^3.5.0",
"prettier-plugin-packagejson": "^2.5.0",
"minimatch": "^3.1.3"
},
"engines": {
"node": ">=20.11.0",
"yarn": "^1.21.1"
}
}