-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 KB
/
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
39
40
41
42
43
44
45
46
47
{
"name": "nebula-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000 --hostname 0.0.0.0",
"build": " cd ./src/db && npx prisma generate --no-engine && cd - && next build",
"start": "next start --port 3000 --hostname 0.0.0.0",
"lint": "next lint"
},
"dependencies": {
"@lucia-auth/adapter-prisma": "^4.0.1",
"@prisma/client": "^5.18.0",
"@prisma/extension-accelerate": "^1.1.0",
"@stripe/stripe-js": "^4.5.0",
"@tanstack/react-query": "^5.51.23",
"@types/bcryptjs": "^2.4.6",
"arctic": "^1.9.2",
"axios": "^1.7.4",
"bcryptjs": "^2.4.3",
"blurhash-base64": "^0.0.3",
"framer-motion": "^11.3.28",
"lucia": "^3.2.0",
"lucide-react": "^0.447.0",
"next": "14.2.5",
"nextjs-toploader": "^1.6.12",
"prisma": "^5.18.0",
"react": "^18",
"react-blurhash": "^0.3.0",
"react-dom": "^18",
"react-responsive": "^10.0.0",
"recoil": "^0.7.7",
"sharp": "^0.33.5",
"stripe": "^16.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}