-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 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
{
"name": "skillclimb",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "vitest run --root .",
"test:watch": "vitest --root .",
"typecheck": "npm run build --workspace=@skillclimb/core && npm run typecheck --workspaces --if-present",
"build": "npm run build --workspace=@skillclimb/core && npm run build --workspaces --if-present",
"dev:backend": "npm run dev --workspace=@skillclimb/backend",
"dev:frontend": "npm run dev --workspace=@skillclimb/frontend",
"dev": "npm run build --workspace=@skillclimb/core && npm run dev:backend & npm run dev:frontend",
"seed": "npm run seed --workspace=@skillclimb/backend",
"migrate": "npm run migrate --workspace=@skillclimb/backend",
"db:generate": "cd packages/backend && npx drizzle-kit generate",
"db:push": "cd packages/backend && npx drizzle-kit push",
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true"
},
"devDependencies": {
"@types/supertest": "^6.0.3",
"supertest": "^7.2.2",
"typescript": "^5.7.3",
"vitest": "^4.1.9"
}
}