-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
30 lines (30 loc) · 1.15 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
{
"private": true,
"name": "parent",
"version": "0.0.1",
"license": "Bhojpur Consulting",
"devDependencies": {
"@types/node": "^16.11.0",
"@types/shelljs": "^0.8.9",
"json": "^11.0.0",
"rimraf": "^3.0.2",
"ts-node": "10.4.0",
"typescript": "~4.4.4"
},
"scripts": {
"build": "gorpa exec --filter-type yarn --components -- yarn build",
"watch": "gorpa exec --package components:all --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput",
"clean": "gorpa exec --filter-type yarn --components -- yarn clean && rm -rf node_modules",
"upgrade-platform-yml-inferrer": "git clone https://github.com/bhojpur/platform-yml-inferrer /tmp/repo && cp /tmp/repo/src/config-* components/theia/packages/bhojpur-extension/src/browser/setup/ && rm -rf /tmp/repo"
},
"workspaces": {
"packages": [
"components/*",
"components/ee/*",
"components/*/typescript",
"components/*/typescript-*",
"components/supervisor/frontend",
"charts/"
]
}
}