-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
185 lines (185 loc) · 6.94 KB
/
package.json
File metadata and controls
185 lines (185 loc) · 6.94 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
174
175
176
177
178
179
180
181
182
183
184
185
{
"name": "jackerbox",
"version": "0.1.0",
"private": true,
"npmConfig": {
"legacy-peer-deps": true
},
"scripts": {
"dev": "next dev",
"dev:clean": "node scripts/restart-dev-server.js",
"dev:socket": "node scripts/start-dev-with-socket.js",
"build": "prisma generate && next build",
"build:simple": "next build --no-lint",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"fix-dynamic": "node fix-dynamic-routes.js",
"create-admin": "ts-node scripts/create-admin.ts",
"setup-stripe-connect": "ts-node scripts/setup-stripe-connect.ts",
"setup-s3": "ts-node scripts/setup-s3-bucket.ts",
"setup-cloudinary": "ts-node scripts/setup-cloudinary.ts",
"test-image-processing": "ts-node scripts/test-image-processing.ts",
"test-aws": "ts-node scripts/test-aws-credentials.ts",
"test-s3-upload": "ts-node scripts/test-s3-upload.ts",
"verify-aws": "ts-node scripts/verify-aws-credentials.ts",
"test-aws-simple": "ts-node scripts/test-aws-simple.ts",
"test-aws-cli": "./scripts/test-aws-cli.sh",
"seed-test-data": "ts-node scripts/seed-test-data.ts",
"check-aws-key": "ts-node scripts/check-aws-key.ts",
"test-s3-access": "ts-node scripts/test-s3-access.ts",
"generate-presigned-url": "ts-node scripts/generate-presigned-url.ts",
"test-with-s3-url": "ts-node scripts/test-with-s3-url.ts",
"test-s3-direct": "ts-node scripts/test-s3-direct.ts",
"create-s3-bucket": "ts-node scripts/create-s3-bucket.ts",
"deploy-static": "node scripts/deploy-static.js",
"cleanup": "node scripts/cleanup-storage.js",
"cleanup:deep": "npm run cleanup && npm prune --production && npm cache clean --force",
"optimize-mobile": "node scripts/optimize-for-mobile.js",
"mobile:dev": "cp next.config.mobile.mjs next.config.mjs && next dev",
"mobile": "bash scripts/start-mobile.sh",
"pwa": "npm run optimize-mobile && npm run mobile",
"kill-socket": "node scripts/kill-socket-process.js",
"socket": "node scripts/socket-server.js",
"dev:full": "concurrently \"npm run dev\" \"npm run socket\"",
"test-stripe-webhooks": "ts-node scripts/test-stripe-webhooks.ts",
"test-stripe-success": "ts-node scripts/test-stripe-webhooks.ts test-success",
"test-stripe-failed": "ts-node scripts/test-stripe-webhooks.ts test-failed",
"create-test-payment": "ts-node scripts/test-stripe-webhooks.ts create-payment",
"test-database-integration": "ts-node scripts/test-database-integration.ts",
"test-companion": "npx tsx scripts/test-companion.ts",
"test-full": "npx tsx scripts/comprehensive-app-test.ts",
"test:unit": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:integration": "jest --config jest.integration.config.js",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:load": "k6 run tests/load/basic-load.js",
"test:security": "npm audit && snyk test || true",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:smoke": "npm run test-full",
"test:critical": "npm run test:unit && npm run test:smoke"
},
"dependencies": {
"@arcjet/next": "^1.0.0-beta.2",
"@auth/prisma-adapter": "^2.9.1",
"@aws-sdk/client-rekognition": "^3.758.0",
"@aws-sdk/client-s3": "^3.758.0",
"@aws-sdk/credential-providers": "^3.758.0",
"@aws-sdk/s3-request-presigner": "^3.758.0",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^4.1.3",
"@neondatabase/serverless": "^1.0.0",
"@prisma/client": "^6.8.2",
"@prisma/extension-accelerate": "^1.2.2",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.13",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.3",
"@sendgrid/mail": "^8.1.5",
"@socket.io/redis-adapter": "^8.3.0",
"@statsig/js-client": "^3.14.1",
"@statsig/react-bindings": "^3.14.1",
"@statsig/session-replay": "^3.14.1",
"@statsig/web-analytics": "^3.14.1",
"@stripe/react-stripe-js": "^3.1.1",
"@stripe/stripe-js": "^5.7.0",
"@types/uuid": "^10.0.0",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.9",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"autoprefixer": "^10.4.17",
"bcryptjs": "^3.0.2",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.5.1",
"clsx": "^2.1.1",
"critters": "^0.0.23",
"crypto-browserify": "^3.12.1",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"firebase": "^10.14.1",
"googleapis": "^146.0.0",
"https-browserify": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"next-auth": "^4.24.11",
"next-pwa": "^5.6.0",
"node-fetch": "^2.7.0",
"node-ical": "^0.20.1",
"postcss": "^8.4.35",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"react": "^19.0.0",
"react-big-calendar": "^1.18.0",
"react-day-picker": "^9.7.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.54.2",
"react-image-file-resizer": "^0.4.8",
"recharts": "^2.15.1",
"redis": "^5.0.1",
"resend": "^4.5.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"sonner": "^2.0.1",
"statsig-node": "^6.3.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"stripe": "^17.7.0",
"swr": "^2.3.3",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^3.4.1",
"tesseract.js": "^6.0.0",
"twilio": "^5.6.1",
"url": "^0.11.4",
"util": "^0.12.5",
"uuid": "^8.3.2",
"web-push": "^3.6.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@jest/globals": "^29.7.0",
"@netlify/plugin-nextjs": "^5.9.4",
"@playwright/test": "^1.52.0",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/d3-color": "^3.1.3",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-scale": "^4.0.9",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20",
"@types/node-fetch": "^2.6.12",
"@types/react": "^19.1.2",
"@types/react-big-calendar": "^1.16.1",
"@types/react-dom": "^19.1.2",
"@types/web-push": "^3.6.4",
"concurrently": "^9.1.2",
"cssnano": "^7.0.6",
"eslint": "^9",
"eslint-config-next": "15.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"null-loader": "^4.0.1",
"postcss-nesting": "^13.0.1",
"prisma": "^6.8.2",
"supertest": "^6.3.4",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}