forked from gitpod-io/gitpod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.49 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
40
41
42
{
"private": true,
"name": "parent",
"version": "0.0.0",
"license": "UNLICENSED",
"devDependencies": {
"@types/node": "^10.14.8",
"@types/shelljs": "^0.8.8",
"concurrently": "^5.3.0",
"envfile": "^2.1.1",
"json": "^9.0.6",
"lerna": "^2.5.1",
"rimraf": "^2.6.2",
"ts-node": "<7.0.0",
"typescript": "~4.1.2"
},
"scripts": {
"build": "leeway exec --filter-type yarn --components -- yarn build",
"watch": "leeway exec --package components:all --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput",
"clean": "leeway exec --filter-type yarn --components -- yarn clean && rm -rf node_modules",
"upgrade-gitpod-yml-inferrer": "git clone https://github.com/gitpod-io/gitpod-yml-inferrer /tmp/repo && cp /tmp/repo/src/config-* components/theia/packages/gitpod-extension/src/browser/setup/ && rm -rf /tmp/repo"
},
"workspaces": {
"packages": [
"components/*",
"components/ee/*",
"components/*/typescript",
"components/*/typescript-*",
"components/supervisor/frontend",
"charts/"
]
},
"resolutions": {
"@types/react": "17.0.0",
"vscode-languageserver-protocol": "3.15.3",
"vscode-languageserver-types": "3.15.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"nan": "2.14.1",
"oniguruma": "7.2.1"
}
}