-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
36
{
"name": "heradesk",
"version": "1.0.0",
"description": "Customer Service Chat Application",
"module": "engine/src/index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run css:build && bun --hot engine/src/index.ts",
"start": "bun run css:build && bun engine/src/index.ts",
"css:build": "tailwindcss -i dashboard/src/index.css -o dashboard/src/styles.css",
"css:watch": "tailwindcss -i dashboard/src/index.css -o dashboard/src/styles.css --watch",
"db:generate": "bunx prisma generate",
"db:migrate": "bunx prisma migrate dev",
"db:push": "bunx prisma db push",
"db:studio": "bunx prisma studio",
"db:seed": "bun engine/src/db/seed.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"prisma": "^6.9.0",
"tailwindcss": "3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.800.0",
"@prisma/client": "^6.9.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"zod": "^4.2.1"
}
}