-
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) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 806 Bytes
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": "ladeway",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"type-check": "turbo run type-check",
"lint": "turbo run lint",
"clean": "turbo run clean",
"db:migrate": "npx prisma migrate dev --schema=prisma/schema.prisma",
"db:seed": "npx ts-node prisma/seed.ts",
"db:studio": "npx prisma studio --schema=prisma/schema.prisma",
"test": "turbo run test",
"test:integration": "turbo run test:integration",
"test:e2e": "npx playwright test --config=apps/web/playwright.config.ts"
},
"devDependencies": {
"turbo": "^2.5.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@10.0.0"
}