-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 983 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
34
35
36
37
38
{
"name": "next-elysia-prisma",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "prisma migrate deploy && next start",
"lint": "next lint",
"prisma": "prisma migrate dev --name init && prisma generate",
"postinstall": "prisma generate"
},
"dependencies": {
"@elysiajs/eden": "1.2.0",
"@prisma/client": "6.2.1",
"@tanstack/react-query": "5.64.2",
"elysia": "1.2.10",
"jose": "5.9.6",
"next": "15.1.5",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@types/bun": "1.1.17",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"eslint": "9.17.0",
"eslint-config-next": "15.1.5",
"postcss": "8.5.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.10",
"prisma": "6.2.1",
"tailwindcss": "3.4.17",
"typescript": "5.7.3"
}
}