-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.17 KB
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
{
"name": "cutloc-editor",
"private": true,
"version": "0.0.2",
"description": "CutLoc local-first video editor",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -k \"npm:dev:web\" \"npm:dev:server\"",
"dev:web": "npm --workspace apps/web run dev",
"dev:server": "npm --workspace apps/server run dev",
"build": "npm run build:shared && npm run build:web && npm run build:server",
"build:shared": "npm --workspace packages/shared run build",
"build:web": "npm --workspace apps/web run build",
"build:server": "npm --workspace apps/server run build",
"start": "npm run build && npm --workspace apps/server run start",
"test": "npm --workspace packages/shared run test && npm --workspace apps/server run test",
"test:shared": "npm --workspace packages/shared run test",
"test:server": "npm --workspace apps/server run test",
"test:web": "playwright test",
"test:all": "npm test && npm run test:web",
"verify": "npm run build && npm test",
"verify:all": "npm run build && npm run test:all"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"concurrently": "^10.0.4"
}
}