-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "chrona",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"postinstall": "npx prisma generate",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "next lint",
"migrate": "npx prisma migrate dev",
"generate": "npx prisma generate",
"studio": "npx prisma studio",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@prisma/client": "^5.7.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.17.7",
"@tanstack/react-query-devtools": "^5.17.7",
"@tanstack/react-table": "^8.11.8",
"@types/node": "20.10.6",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.16",
"axios": "^1.6.5",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"date-fns": "^3.3.1",
"dayjs": "^1.11.10",
"device-detector-js": "^3.0.3",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.306.0",
"moment": "^2.30.1",
"next": "^16.1.6",
"next-swagger-doc": "^0.4.0",
"next-themes": "^0.2.1",
"node-mocks-http": "^1.14.1",
"nodemailer": "^8.0.1",
"react": "^19.2.4",
"react-confirm-alert": "^3.0.6",
"react-day-picker": "^8.10.0",
"react-dom": "^19.2.4",
"react-hook-form": "^7.49.2",
"react-icons": "^4.12.0",
"react-loading-icons": "^1.1.0",
"react-top-loading-bar": "^2.3.1",
"sonner": "^1.3.1",
"swagger-ui-react": "^5.31.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "5.3.3",
"use-debounce": "^10.0.0",
"vaul": "^0.8.0",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/nodemailer": "^6.4.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-module-name-mapper": "^0.1.5",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.1"
}
}