-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.07 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.07 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
{
"name": "todo",
"private": true,
"version": "0.1.0",
"workspaces": [
"apps/*"
],
"scripts": {
"install:all": "npm install --workspaces",
"dev:web": "npm --prefix apps/web run dev",
"build:web": "npm --prefix apps/web run build",
"lint:web": "npm --prefix apps/web run lint",
"test:web": "npm --prefix apps/web run test",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"test:all": "npm run test:web && npm run test:api && npm run test:e2e",
"typecheck:web": "npm --prefix apps/web run typecheck",
"dev:api": "npm --prefix apps/api run dev",
"build:api": "npm --prefix apps/api run build",
"lint:api": "npm --prefix apps/api run lint",
"test:api": "npm --prefix apps/api run test",
"typecheck:api": "npm --prefix apps/api run typecheck",
"build": "npm run build:web && npm run build:api",
"lint": "npm run lint:web && npm run lint:api",
"test": "npm run test:all",
"typecheck": "npm run typecheck:web && npm run typecheck:api"
},
"devDependencies": {
"@playwright/test": "^1.58.2"
}
}