-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "simple-todo",
"version": "1.0.0",
"description": "Simple hierarchical todo application",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"dev:web": "npm run dev --workspace=@simple-todo/web",
"dev:api": "npm run dev --workspace=@simple-todo/api",
"build": "npm run build --workspace=@simple-todo/shared && npm run build --workspace=@simple-todo/web",
"build:shared": "npm run build --workspace=@simple-todo/shared",
"test": "npm run test:root && npm run test --workspaces --if-present",
"test:root": "vitest run",
"test:web": "npm run test --workspace=@simple-todo/web",
"test:api": "npm run test --workspace=@simple-todo/api",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "npm run lint --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"db:reset": "tsx scripts/db-reset.ts",
"db:seed": "tsx scripts/seed-basic-data.ts",
"db:status": "tsx scripts/db-status.ts",
"db:setup": "npm run db:reset && npm run db:seed"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/ui": "^3.2.4",
"concurrently": "^8.2.2",
"dotenv": "^17.2.2",
"jsdom": "^26.1.0",
"supabase": "^2.39.2",
"tsx": "^4.20.5",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": "22.x",
"npm": ">=9.0.0"
}
}