-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "monorepo-template",
"private": true,
"workspaces": {
"packages": [
"examples/*",
"packages/*",
"scripts"
]
},
"scripts": {
"clean": "git clean -fdx -e node_modules",
"build-only": "lage build --continue",
"build": "yarn build-only && yarn types",
"types": "lage types --continue",
"test": "lage test --continue",
"lint": "lage lint --continue",
"lage": "lage",
"ci": "yarn lage build types test lint && yarn checkchange",
"beachball": "beachball",
"change": "yarn beachball -b origin/main change",
"checkchange": "yarn beachball -b origin/main check",
"postinstall": "patch-package"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-typescript": "^7.14.0",
"beachball": "^2.47.1",
"graphql": "^15.0.0",
"lage": "^2.7.14",
"patch-package": "^7.0.0",
"prettier": "^2.8.7",
"ts-jest": "^29.2.0"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"cross-fetch": "^3.1.5",
"glob-parent": "^6.0.2",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"node-forge": "^1.3.2",
"qs": "^6.13.1",
"trim": "^1.0.1",
"@babel/traverse": "^7.23.0",
"micromatch": "^4.0.8",
"braces": "^3.0.3",
"cross-spawn": "^7.0.5",
"serialize-javascript": "^7.0.4",
"webpack": "^5.105.4",
"immutable": "~3.8.3"
}
}