-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.95 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.95 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "attend",
"version": "2.22.9",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build && cp -r public .next/standalone/ && cp -r .next/static .next/standalone/.next/",
"start": "next start",
"lint": "next lint",
"clear": "rm -rf .next",
"test": "vitest"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} app/seed.ts",
"schema": "./prisma"
},
"dependencies": {
"@heroui/avatar": "2.2.7",
"@heroui/button": "2.2.10",
"@heroui/calendar": "2.2.10",
"@heroui/card": "2.2.10",
"@heroui/checkbox": "2.3.9",
"@heroui/chip": "2.2.7",
"@heroui/date-input": "2.3.9",
"@heroui/date-picker": "2.3.10",
"@heroui/divider": "2.2.6",
"@heroui/dropdown": "2.3.10",
"@heroui/form": "^2.1.9",
"@heroui/input": "2.4.10",
"@heroui/link": "2.2.8",
"@heroui/modal": "2.2.8",
"@heroui/pagination": "2.2.9",
"@heroui/progress": "2.2.7",
"@heroui/select": "2.4.10",
"@heroui/skeleton": "2.2.6",
"@heroui/spinner": "2.2.7",
"@heroui/system": "2.4.7",
"@heroui/table": "2.2.9",
"@heroui/tabs": "2.2.8",
"@heroui/theme": "2.4.6",
"@heroui/tooltip": "2.2.8",
"@heroui/user": "2.2.7",
"@internationalized/date": "3.6.0",
"@next/bundle-analyzer": "^15.1.3",
"@prisma/client": "^6.2.1",
"@react-stately/data": "^3.11.4",
"@tanstack/react-table": "^8.11.7",
"@types/bcryptjs": "^2.4.6",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.11.8",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.3",
"clsx": "^2.1.0",
"date-holidays": "^3.23.12",
"file-type": "^19.0.0",
"framer-motion": "^11.15.0",
"glob": "^10.4.2",
"next": "15.3.3",
"next-auth": "^5.0.0-beta.19",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.0.1",
"recharts": "^2.15.0",
"reflect-metadata": "^0.2.1",
"sharp": "^0.34.2",
"sonner": "^1.5.0",
"swr": "^2.2.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "15.3.3",
"jsdom": "^26.1.0",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^6.2.1",
"tailwindcss": "^3.4.16",
"ts-node": "^10.9.2",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.3"
},
"resolutions": {
"@tanstack/react-virtual": "^3.11.2"
},
"pnpm": {
"supportedArchitectures": {
"os": [
"current",
"linux"
],
"cpu": [
"x64"
]
},
"onlyBuiltDependencies": [
"@heroui/shared-utils",
"@prisma/client",
"@prisma/engines",
"esbuild",
"prisma",
"sharp",
"unrs-resolver"
]
}
}