-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.76 KB
/
package.json
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": "pstrack",
"version": "2.0.3",
"private": false,
"license": "MIT",
"author": {
"name": "Hüsam",
"email": "[email protected]",
"url": "https://www.husam.ninja/"
},
"scripts": {
"dev": "next dev --turbopack --experimental-https",
"postinstall": "prisma generate --schema=./src/prisma/schema.prisma",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:kick-out": "jest src/tests/api/cron/kick-out.test.ts",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"typecheck": "tsc --noEmit",
"dead-code": "npx ts-prune || exit 1",
"scan": "npx react-scan@latest https://localhost:3000",
"release": "node scripts/sync-version.ts",
"prisma:generate": "prisma generate --schema=./src/prisma/schema.prisma",
"prisma:migrate:dev": "prisma migrate dev --name init --schema=./src/prisma/schema.prisma",
"prisma:migrate:reset": "prisma migrate reset --schema=./src/prisma/schema.prisma",
"prisma:migrate:deploy": "prisma migrate deploy --schema=./src/prisma/schema.prisma",
"prisma:studio": "prisma studio --schema=./src/prisma/schema.prisma",
"prisma:push": "prisma db push --schema=./src/prisma/schema.prisma",
"prisma:pull": "prisma db pull --schema=./src/prisma/schema.prisma",
"prisma:seed": "ts-node ./src/prisma/seed.ts"
},
"dependencies": {
"@next/third-parties": "^15.3.1",
"@prisma/client": "6.6.0",
"@radix-ui/react-avatar": "^1.1.6",
"@radix-ui/react-checkbox": "^1.2.2",
"@radix-ui/react-dialog": "^1.1.10",
"@radix-ui/react-dropdown-menu": "^2.1.10",
"@radix-ui/react-hover-card": "^1.1.10",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-progress": "^1.1.4",
"@radix-ui/react-slot": "^1.2.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"@t3-oss/env-nextjs": "^0.12.0",
"@tanstack/react-query": "^5.74.4",
"@tanstack/react-table": "^8.21.3",
"@trpc/client": "^11.1.0",
"@trpc/react-query": "^11.1.0",
"@trpc/server": "^11.1.0",
"@types/amqplib": "^0.10.7",
"@types/canvas-confetti": "^1.9.0",
"@upstash/redis": "^1.34.8",
"@vercel/functions": "^2.0.0",
"amqplib": "^0.10.7",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"critters": "^0.0.25",
"dotenv": "^16.5.0",
"framer-motion": "^12.7.4",
"jiti": "^2.4.2",
"lodash": "^4.17.21",
"lucide-react": "^0.488.0",
"motion": "^12.7.4",
"next": "15.3.1",
"nodemailer": "^6.10.1",
"nuqs": "^2.4.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"react-use-measure": "^2.1.7",
"server-only": "^0.0.1",
"sonner": "^2.0.3",
"superjson": "^2.2.2",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.2.7",
"zod": "^3.24.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.4",
"@tanstack/eslint-plugin-query": "^5.73.3",
"@tanstack/react-query-devtools": "^5.74.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^20.17.30",
"@types/nodemailer": "^6.4.17",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"eslint": "^9.25.0",
"eslint-config-next": "15.3.1",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.6.0",
"tailwindcss": "^4.1.4",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3",
"uuid": "^11.1.0"
},
"overrides": {
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2"
}
}