-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 844 Bytes
/
package.json
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": "ai-boilerplate",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck",
"prisma:dev": "turbo run prisma:dev",
"prisma:deploy": "turbo run prisma:deploy",
"prisma:generate": "turbo run prisma:generate"
},
"devDependencies": {
"prettier": "^3.2.5",
"prisma": "^5.10.2",
"tsx": "^4.7.1",
"turbo": "^2.0.11",
"typescript": "^5.4.5",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"dependencies": {
"@prisma/client": "^5.10.2"
}
}