forked from winglang/wing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.29 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": "@winglang/monorepo",
"private": true,
"devDependencies": {
"@winglang/compatibility-spy": "workspace:^",
"bump-pack": "workspace:^",
"generate-workspace": "workspace:^",
"turbo": "^2.1.1"
},
"scripts": {
"build": "turbo compile post-compile lint eslint test package",
"compile": "turbo compile",
"test": "turbo lint eslint test",
"package": "turbo package",
"package:ci": "turbo package --color && tar -czvf dist/docs.tgz docs/*",
"test:ci": "turbo default --color --concurrency 1 && turbo compile post-compile lint eslint test test:playwright --color --filter=!hangar",
"docs": "./scripts/docsite.sh",
"install": "bash scripts/setup_wasi.sh",
"postinstall": "link-bundles && generate-workspace",
"wing": "turbo compile -F winglang --output-logs=new-only && ./packages/winglang/bin/wing"
},
"volta": {
"node": "20.17.0",
"pnpm": "8.15.1"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"mime": "^3.0.0",
"axios@>=0.8.1 <0.28.0": ">=0.28.0"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}