-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "tireops",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev --hostname 127.0.0.1",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:generate": "prisma generate",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts",
"db:seed:reset": "SEED_RESET=1 tsx prisma/seed.ts",
"db:seed:large": "SEED_PROFILE=large SEED_RESET=1 tsx prisma/seed.ts",
"db:studio": "prisma studio",
"postinstall": "prisma generate",
"db:seed:emails": "tsx prisma/seed-email-threads.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@prisma/client": "^6.19.2",
"@tanstack/react-virtual": "^3.13.23",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"jose": "^6.1.3",
"lucide-react": "^0.575.0",
"next": "16.1.6",
"next-auth": "^5.0.0-beta.30",
"openai": "^6.25.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"prisma": "^6.19.2",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}