-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
28 lines (28 loc) · 954 Bytes
/
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
{
"private": true,
"name": "parent",
"version": "0.0.0",
"license": "UNLICENSED",
"devDependencies": {
"@types/node": "^18.18.8",
"@types/shelljs": "^0.8.9",
"json": "^11.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "~4.4.4"
},
"scripts": {
"build": "leeway exec --filter-type yarn --cache-key yarn_build -- yarn build",
"rebuild": "leeway exec --filter-type yarn -- yarn build",
"watch": "leeway exec --package components:all --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput",
"clean": "leeway exec --filter-type yarn -- yarn clean && rm -rf node_modules"
},
"workspaces": {
"packages": [
"components/*",
"components/*/typescript",
"components/*/typescript-*",
"components/supervisor/frontend"
]
}
}