-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "relay",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "turbo test",
"test:integration": "turbo test:integration",
"test:e2e": "turbo test:e2e",
"typecheck": "turbo typecheck",
"postinstall": "npx prisma@6 generate --schema=packages/db/prisma/schema.prisma && node scripts/ensure-prisma-engine.mjs",
"db:generate": "pnpm --filter @relay/db generate",
"db:migrate": "pnpm --filter @relay/db migrate:dev",
"db:seed": "pnpm --filter @relay/db seed",
"db:push": "pnpm --filter @relay/db push",
"clean": "turbo clean"
},
"dependencies": {
"next": "^15.1.4"
},
"devDependencies": {
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20"
}
}