Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/package.json
2482 views
1
{
2
"private": true,
3
"name": "parent",
4
"version": "0.0.0",
5
"license": "UNLICENSED",
6
"devDependencies": {
7
"@types/node": "^18.18.8",
8
"@types/shelljs": "^0.8.9",
9
"json": "^11.0.0",
10
"rimraf": "^3.0.2",
11
"ts-node": "^10.4.0",
12
"typescript": "~4.4.4"
13
},
14
"scripts": {
15
"build": "leeway exec --filter-type yarn --cache-key yarn_build -- yarn build",
16
"rebuild": "leeway exec --filter-type yarn -- yarn build",
17
"watch": "leeway exec --package components:all --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput",
18
"clean": "leeway exec --filter-type yarn -- yarn clean && rm -rf node_modules"
19
},
20
"workspaces": {
21
"packages": [
22
"components/*",
23
"components/*/typescript",
24
"components/*/typescript-*",
25
"components/supervisor/frontend"
26
]
27
},
28
"resolutions": {
29
"sha.js": "2.4.12"
30
}
31
}
32
33