-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.55 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
{
"name": "innovortex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@aws-sdk/client-s3": "^3.895.0",
"@aws-sdk/s3-request-presigner": "^3.895.0",
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.16.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@tanstack/react-query": "^5.90.2",
"@tiptap/extension-placeholder": "^3.5.1",
"@tiptap/react": "^3.5.1",
"@tiptap/starter-kit": "^3.5.1",
"@trpc/client": "^11.5.1",
"@trpc/next": "^11.5.1",
"@trpc/react-query": "^11.5.1",
"@trpc/server": "^11.5.1",
"@types/bcryptjs": "^2.4.6",
"@types/multer": "^2.0.0",
"aws-sdk": "^2.1692.0",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.544.0",
"multer": "^2.0.2",
"next": "15.5.4",
"next-auth": "^4.24.11",
"prisma": "^6.16.2",
"radix": "^0.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.63.0",
"recharts": "^3.2.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"superjson": "^2.2.2",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.55.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"tsx": "^4.20.5",
"typescript": "^5"
}
}