-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "stack-connect",
"author": "thasup",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:push": "npx prisma db push --schema=./src/libs/prisma/schema.prisma",
"prisma:generate": "npx prisma generate --schema=./src/libs/prisma/schema.prisma",
"prisma:migrate": "npx prisma migrate dev --schema=./src/libs/prisma/schema.prisma",
"prisma:studio": "npx prisma studio --schema=./src/libs/prisma/schema.prisma"
},
"dependencies": {
"@dicebear/collection": "^9.2.2",
"@dicebear/core": "^9.2.2",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.1",
"@mui/icons-material": "^6.4.2",
"@mui/material": "^6.4.2",
"@mui/material-nextjs": "^6.4.2",
"@next/third-parties": "^15.1.6",
"@prisma/client": "^6.9.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.48.1",
"@vercel/analytics": "^1.4.1",
"next": "15.3.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"swiper": "^11.2.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20.17.57",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"postcss": "^8",
"prisma": "^6.9.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
}
}