-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
184 lines (184 loc) · 6.61 KB
/
package.json
File metadata and controls
184 lines (184 loc) · 6.61 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
{
"name": "emuready",
"version": "0.13.2",
"type": "module",
"private": false,
"packageManager": "pnpm@11.1.0",
"license": "GPL-3.0-or-later",
"author": "Producdevity",
"scripts": {
"analyze": "ANALYZE=true next build",
"analyze:turbo": "ANALYZE=true next build --turbopack",
"build": "pnpm db:generate && next build",
"build:turbo": "pnpm db:generate && next build --turbopack",
"check": "pnpm lint:fix && pnpm types",
"clean": "rm -rf .next && rm -rf node_modules/.cache && rm -rf .eslintcache && rm -rf tsconfig.tsbuildinfo",
"clean:all": "pnpm clean && rm -rf node_modules",
"db:backup": "./scripts/db-backup.sh",
"db:backup:supabase": "./scripts/db-backup-supabase.sh",
"db:generate": "pnpm exec prisma generate --sql",
"db:migrate:create": "./scripts/db-cmd.sh pnpm exec prisma migrate dev --create-only",
"db:migrate:deploy": "./scripts/db-cmd.sh pnpm exec prisma migrate deploy",
"db:migrate:dev": "./scripts/db-cmd.sh pnpm exec prisma migrate dev",
"db:migrate:status": "./scripts/db-cmd.sh pnpm exec prisma migrate status",
"db:push": "./scripts/db-cmd.sh pnpm exec prisma db push",
"db:seed": "./scripts/db-cmd.sh pnpm exec tsx prisma/seed.ts",
"db:seed:permissions": "./scripts/db-cmd.sh pnpm exec tsx prisma/seed-permissions.ts",
"db:studio": "./scripts/db-cmd.sh pnpm exec prisma studio",
"dev": "next dev",
"dev:turbo": "next dev --turbopack",
"dev:tracing": "NEXT_TURBOPACK_TRACING=1 next dev --turbopack",
"dev:profile": "NEXT_CPU_PROF=1 NEXT_TURBOPACK_TRACING=1 next dev --turbopack",
"dev:debug": "DEBUG=next:* next dev --turbopack",
"docs:generate": "tsx src/scripts/api/generate-api-docs.ts",
"docs:watch": "nodemon --watch src/server/api/routers/mobile --watch src/schemas/mobile.ts --exec \"pnpm docs:generate\"",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"postinstall": "prisma generate",
"prepare": "husky",
"prepare-deploy": "pnpm format && pnpm lint && pnpm types && pnpm test && pnpm build",
"deploy": "tsx scripts/deploy-manually.ts",
"release:android": "tsx scripts/upload-android-release.ts",
"shadcn": "tsx ./scripts/shadcn.ts",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ci": "vitest run",
"test:e2e": "playwright test --ui",
"test:e2e:ci": "CI=true DISABLE_RATE_LIMIT=true NEXT_IMAGE_UNOPTIMIZED=true playwright test",
"types": "pnpm db:generate && next typegen && tsc --noEmit",
"vercel:build": "pnpm exec prisma migrate deploy && pnpm db:generate && next build",
"version:sync": "node scripts/sync-version.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.896.0",
"@aws-sdk/s3-request-presigner": "^3.896.0",
"@clerk/backend": "2.33.3",
"@clerk/nextjs": "6.39.3",
"@clerk/themes": "^2.2.48",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.0.1",
"@next/third-parties": "16.2.6",
"@prisma/adapter-pg": "7.8.0",
"@prisma/client": "7.8.0",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.7",
"@scalar/api-reference-react": "^0.7.30",
"@sendgrid/mail": "^8.1.5",
"@sentry/nextjs": "^10.53.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "5.100.10",
"@trpc/client": "11.17.0",
"@trpc/next": "11.17.0",
"@trpc/react-query": "11.17.0",
"@trpc/server": "11.17.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"axios": "1.16.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"critters": "^0.0.23",
"date-fns": "^4.1.0",
"dompurify": "3.4.2",
"framer-motion": "^12.11.0",
"franc": "^6.2.0",
"franc-min": "^6.2.0",
"fuse.js": "^7.1.0",
"html-escaper": "^3.0.3",
"jsdom": "26.1.0",
"lru-cache": "^11.1.0",
"lucide-react": "^0.511.0",
"mailersend": "^2.6.0",
"markdown-it": "14.1.1",
"next": "16.2.6",
"next-themes": "^0.4.6",
"pg": "8.21.0",
"pg-pool": "3.14.0",
"postcss": "8.5.14",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.56.4",
"react-syntax-highlighter": "^15.6.6",
"remeda": "^2.22.1",
"sonner": "^2.0.3",
"superjson": "^2.2.2",
"svix": "^1.66.0",
"tailwind-merge": "^3.3.0",
"tsx": "^4.19.4",
"zod": "^3.24.4"
},
"devDependencies": {
"@clerk/testing": "^1.8.0",
"@clerk/types": "4.101.23",
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.28.0",
"@next/bundle-analyzer": "16.2.6",
"@next/eslint-plugin-next": "16.2.6",
"@playwright/test": "^1.60.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.6",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@vitejs/plugin-react": "^4.4.1",
"dotenv": "^16.5.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"lightningcss": "^1.30.1",
"lint-staged": "^16.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"prisma": "7.8.0",
"swagger-jsdoc": "^6.2.8",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.3.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.1.6",
"zod-to-json-schema": "^3.24.6"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.44.1",
"@tailwindcss/oxide-linux-x64-gnu": "^4.1.11",
"lightningcss-linux-x64-gnu": "^1.30.1",
"sharp": "^0.33.5"
},
"overrides": {
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3"
}
}
}