-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
173 lines (173 loc) · 7.13 KB
/
package.json
File metadata and controls
173 lines (173 loc) · 7.13 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "familiarise_web",
"version": "0.2.0",
"private": true,
"scripts": {
"build": "npm run db:generate && next build",
"build:analyze": "ANALYZE=true npm run build",
"build:prod": "npm run build",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev --name init",
"db:pull": "prisma db pull",
"db:push": "prisma db push",
"db:triggers": "npx tsx -r dotenv/config scripts/db/apply-ledger-triggers.ts",
"db:constraints": "npx tsx -r dotenv/config scripts/db/apply-check-constraints.ts",
"test:chaos:api": "npx tsx tests/typescript/race-conditions/master-runner.ts sequential --category=07-real-api-booking && npx tsx tests/typescript/race-conditions/master-runner.ts sequential --category=09-webhook-storm",
"db:seed": "npx tsx prisma/seed.ts",
"db:seed:small": "SEED_MODE=small npx tsx prisma/seed.ts",
"db:seed:medium": "SEED_MODE=medium npx tsx prisma/seed.ts",
"db:seed:large": "SEED_MODE=large npx tsx prisma/seed.ts",
"db:seed:validation": "npx tsx prisma/seedFiles/validation/impossible-cases.ts",
"db:studio": "prisma studio",
"dev": "next dev",
"fix:imports": "eslint --fix . --rule 'unused-imports/no-unused-imports: error'",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "next lint",
"lint:fix": "eslint --fix .",
"postinstall": "prisma generate",
"scripts:analyze": "npm run build:analyze && ts-node -P tsconfig.scripts.json scripts/analyze-bundle.ts",
"scripts:cleanup-empty-folders": "npx ts-node scripts/cleanup-empty-folders.ts",
"scripts:cleanup-empty-folders:dev": "tsx scripts/cleanup-empty-folders.ts",
"scripts:test-storage": "npx ts-node tests/typescript/test-storage-setup.ts",
"scripts:test-storage:dev": "npx tsx tests/typescript/test-storage-setup.ts",
"scripts:test-bucket": "npx tsx tests/typescript/test-bucket-creation.ts",
"scripts:create-bucket": "npx tsx scripts/create-documents-bucket.ts",
"scripts:find-unused-imports": "ts-node -P tsconfig.scripts.json scripts/find-unused-imports.ts",
"scripts:optimize-images": "ts-node -P tsconfig.scripts.json scripts/optimize-images.ts",
"scripts:suggest-code-splitting": "ts-node -P tsconfig.scripts.json scripts/suggest-code-splitting.ts",
"scripts:diagnose-build": "ts-node -P tsconfig.scripts.json scripts/diagnose-build.ts",
"scripts:update-postman": "npx ts-node scripts/typescript/update-postman-collection.ts",
"scripts:cleanup-abandoned-payments": "npx ts-node scripts/cleanup-abandoned-payments.ts",
"scripts:release-earnings": "npx tsx scripts/release-earnings.ts",
"scripts:create-payout-batch": "npx tsx scripts/create-payout-batch.ts",
"scripts:process-payouts": "npx tsx scripts/process-payouts.ts",
"scripts:delete-dependabot-prs": "npx ts-node scripts/delete-dependabot-prs.ts",
"test:race": "npx tsx tests/typescript/race-conditions/master-runner.ts",
"test:race:parallel": "npx tsx tests/typescript/race-conditions/master-runner.ts parallel",
"scripts:stream-sync": "npx ts-node -P tsconfig.scripts.json jobs/stream-sync.ts",
"scripts:sync-env-github": "npx ts-node -P tsconfig.scripts.json scripts/update-env-github-actions.ts",
"start": "next start",
"start-watch": "WATCHPACK_POLLING=true next start",
"test": "jest",
"test:watch": "jest --watch",
"update-env-secret": "npx tsx scripts/update-env-secret.ts",
"update-slot-types": "ts-node scripts/update-slot-types.ts"
},
"dependencies": {
"@better-auth/sso": "^1.6.3",
"@faker-js/faker": "^10.2.0",
"@hookform/resolvers": "^5.2.2",
"@novu/api": "^3.13.0",
"@novu/nextjs": "^3.13.0",
"@novu/react": "^3.13.0",
"@opentelemetry/api": "^1.9.0",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "7.7.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@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-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.6",
"@react-email/render": "^2.0.4",
"@react-pdf/renderer": "^4.3.2",
"@stream-io/node-sdk": "^0.7.36",
"@stream-io/video-react-sdk": "^1.31.5",
"@stripe/stripe-js": "^8.6.4",
"@supabase/storage-js": "^2.93.1",
"@supabase/supabase-js": "^2.93.1",
"@tanstack/react-query": "^5.90.20",
"@types/bad-words": "^3.0.3",
"@types/bcrypt": "^6.0.0",
"@types/redlock": "^4.0.8",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.1",
"axios": "^1.13.3",
"bad-words": "^4.0.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.3",
"better-auth": "^1.6.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^17.2.3",
"framer-motion": "^11.15.0",
"iso-639-1": "^3.1.5",
"libsodium-wrappers": "^0.8.2",
"lucide-react": "^0.563.0",
"next": "^15.3.8",
"next-nprogress-bar": "^2.4.7",
"npm": "^11.8.0",
"pg": "^8.17.2",
"prettier": "^3.8.1",
"razorpay": "^2.9.6",
"react": "^18.3.1",
"react-cookie-consent": "^10.0.1",
"react-day-picker": "^9.13.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.71.1",
"react-icons": "^5.5.0",
"recharts": "^2.15.0",
"resend": "^6.8.0",
"server-only": "^0.0.1",
"sharp": "^0.34.5",
"stream-chat": "^9.30.1",
"stream-chat-react": "^13.13.4",
"stripe": "^20.2.0",
"swr": "^2.3.8",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"use-debounce": "^10.1.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@next/bundle-analyzer": "^16.1.5",
"fast-check": "^3.23.2",
"@next/eslint-plugin-next": "^16.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest": "^30.0.0",
"@types/libsodium-wrappers": "^0.8.2",
"@types/node": "^25.0.10",
"@types/pg": "^8.16.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.23",
"chalk": "^5.6.2",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"glob": "^13.0.0",
"globals": "^17.1.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.5.6",
"prisma": "7.7.0",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}