-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2 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
{
"name": "komrest",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx -c .eslintrc.json",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"migrate:backup": "tsx scripts/migrate-from-supabase-backup.ts",
"db:start": "docker compose up -d",
"db:stop": "docker compose down"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@heroui/react": "^2.8.0",
"@heroui/theme": "^2.4.0",
"@internationalized/date": "^3.10.0",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"@react-aria/ssr": "^3.9.0",
"@react-aria/visually-hidden": "^3.8.0",
"@react-types/calendar": "^3.7.0",
"@react-types/shared": "^3.32.0",
"axios": "^1.7.0",
"bcryptjs": "^3.0.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.0.0",
"intl-messageformat": "^10.7.0",
"next": "^16.0.0",
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.0",
"pg": "^8.13.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-toastify": "^11.0.0",
"tailwind-variants": "^3.1.1",
"tailwindcss": "^4.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.11",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"dotenv": "^16.6.1",
"eslint": "^9.0.0",
"eslint-config-next": "^16.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unused-imports": "^4.2.0",
"postcss": "^8.5.0",
"prisma": "^7.0.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0"
}
}