-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 883 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
31
32
33
{
"name": "convio",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"devDependencies": {
"@eslint/js": "^10",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"@types/pg": "^8.11.0",
"dotenv": "^16.4.0",
"eslint": "^10.6.0",
"globals": "^17",
"pg": "^8.13.0",
"prettier": "^3.0.0",
"prisma": "^7.0.0",
"turbo": "^2.0.0",
"typescript": "~6",
"typescript-eslint": "^8"
},
"packageManager": "pnpm@11.17.0"
}