-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 928 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 928 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
34
{
"private": true,
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "tsx packages/database/src/seed.ts"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:migrate:dev": "turbo run db:migrate:dev",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed",
"generate": "turbo run generate"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"prettier": "^3.2.5",
"turbo": "^2.5.0",
"prisma": "6.5.0",
"zod": "^3.23.8"
},
"name": "chadllenger",
"packageManager": "bun@1.0.27",
"workspaces": ["apps/*", "packages/*"],
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/cli": "^4.1.3",
"dotenv": "^16.5.0",
"tailwindcss": "^4.1.3"
}
}