-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "sisyphus",
"private": true,
"workspaces": [
"sisyphus-api",
"sisyphus-web"
],
"scripts": {
"build": "npm run --workspace sisyphus-api build && npm run --workspace sisyphus-web build",
"build:api": "npm run --workspace sisyphus-api build",
"build:web": "npm run --workspace sisyphus-web build",
"test": "npm run --workspace sisyphus-api test",
"test:api": "npm run --workspace sisyphus-api test",
"typecheck:api": "npx --workspace sisyphus-api tsc --noEmit",
"typecheck:web": "npx --workspace sisyphus-web tsc -b --noEmit",
"typecheck": "npm run typecheck:api && npm run typecheck:web",
"changeset": "changeset",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0"
}
}