-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.65 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
54
55
56
57
58
59
60
61
{
"name": "market-pos",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "ts-node --compiler-options \"{\\\"module\\\":\\\"CommonJS\\\"}\" prisma/seed.ts"
},
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "ts-node --compiler-options \"{\\\"module\\\":\\\"CommonJS\\\"}\" prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "2.7.4",
"@hookform/resolvers": "3.9.1",
"@iconify/react": "5.2.0",
"@libsql/client": "0.8.1",
"@nextui-org/button": "2.2.9",
"@nextui-org/input": "2.4.8",
"@nextui-org/link": "2.2.7",
"@nextui-org/react": "2.6.11",
"@nextui-org/system": "2.4.6",
"@nextui-org/theme": "2.4.5",
"@prisma/client": "6.2.1",
"@types/react-big-calendar": "^1.16.1",
"bcryptjs": "2.4.3",
"framer-motion": "11.16.0",
"moment": "^2.30.1",
"next": "15.1.3",
"next-auth": "5.0.0-beta.25",
"react": "19.0.0",
"react-big-calendar": "^1.17.1",
"react-dom": "19.0.0",
"react-hook-form": "7.54.2",
"react-toggle-dark-mode": "1.1.1",
"recharts": "^2.15.0",
"resend": "4.0.1",
"sonner": "1.7.1",
"uuid": "11.0.3",
"zod": "3.24.1",
"zustand": "5.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "3",
"@types/bcryptjs": "2.4.6",
"@types/node": "22.10.6",
"@types/react": "19",
"@types/react-dom": "19",
"eslint": "9",
"eslint-config-next": "15.1.3",
"postcss": "8",
"prisma": "^6.2.1",
"tailwindcss": "3.4.1",
"ts-node": "^10.9.2",
"tsx": "4.19.2",
"typescript": "5.7.2"
}
}