-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 777 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "cohortlens",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "pnpm --filter @cohortlens/web dev",
"dev:api": "pnpm --filter @cohortlens/api-ts dev",
"dev:web": "pnpm --filter @cohortlens/web dev",
"build": "turbo run build",
"build:web": "pnpm --filter @cohortlens/web build",
"lint": "turbo run lint",
"test": "pnpm --filter @cohortlens/api-ts test:e2e",
"test:api": "pnpm --filter @cohortlens/api-ts test:e2e",
"prisma:generate": "pnpm --filter @cohortlens/api-ts prisma:generate",
"prisma:migrate": "pnpm --filter @cohortlens/api-ts prisma:migrate",
"prisma:seed": "pnpm --filter @cohortlens/api-ts prisma:seed"
},
"devDependencies": {
"turbo": "^2.0.0"
},
"packageManager": "pnpm@8.15.5"
}