-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
170 lines (170 loc) · 6.13 KB
/
package.json
File metadata and controls
170 lines (170 loc) · 6.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
{
"name": "emuready",
"version": "0.12.11",
"private": false,
"license": "GPL-3.0-or-later",
"author": "Producdevity",
"scripts": {
"analyze": "ANALYZE=true next build",
"analyze:turbo": "ANALYZE=true next build --turbopack",
"build": "npm run db:generate && next build",
"build:turbo": "npm run db:generate && next build --turbopack",
"check": "npm run lint:fix && npm run types",
"clean": "rm -rf .next && rm -rf node_modules/.cache && rm -rf .eslintcache && rm -rf tsconfig.tsbuildinfo",
"clean:all": "npm run clean && rm -rf node_modules",
"db:backup": "./scripts/db-backup.sh",
"db:backup:supabase": "./scripts/db-backup-supabase.sh",
"db:generate": "prisma generate --sql",
"db:migrate:create": "./scripts/db-cmd.sh prisma migrate dev --create-only",
"db:migrate:deploy": "./scripts/db-cmd.sh npx prisma migrate deploy",
"db:migrate:dev": "./scripts/db-cmd.sh npx prisma migrate dev",
"db:migrate:status": "./scripts/db-cmd.sh prisma migrate status",
"db:push": "./scripts/db-cmd.sh prisma db push",
"db:seed": "./scripts/db-cmd.sh npx tsx prisma/seed.ts",
"db:seed:permissions": "./scripts/db-cmd.sh npx tsx prisma/seed-permissions.ts",
"db:studio": "./scripts/db-cmd.sh npx prisma studio",
"dev": "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 \"npm run docs:generate\"",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"postinstall": "prisma generate",
"prepare": "husky",
"prepare-deploy": "npm run format && npm run lint && npm run types && npm run test && npm run 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 playwright test",
"types": "tsc --noEmit",
"vercel:build": "prisma migrate deploy && 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/nextjs": "^6.24.0",
"@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": "15.4.2",
"@prisma/client": "^6.16.3",
"@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-tooltip": "^1.2.7",
"@scalar/api-reference-react": "^0.7.30",
"@sendgrid/mail": "^8.1.5",
"@sentry/nextjs": "^10.2.0",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.75.7",
"@trpc/client": "^11.1.2",
"@trpc/next": "^11.1.2",
"@trpc/react-query": "^11.1.2",
"@trpc/server": "^11.4.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"axios": "^1.11.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.2.6",
"framer-motion": "^12.11.0",
"franc": "^6.2.0",
"franc-min": "^6.2.0",
"fuse.js": "^7.1.0",
"html-escaper": "^3.0.3",
"lru-cache": "^11.1.0",
"lucide-react": "^0.511.0",
"mailersend": "^2.6.0",
"markdown-it": "^14.1.0",
"next": "^15.5.7",
"next-themes": "^0.4.6",
"postcss": "^8.5.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-error-boundary": "^6.0.0",
"react-google-recaptcha-v3": "^1.11.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",
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.28.0",
"@next/bundle-analyzer": "15.4.2",
"@next/eslint-plugin-next": "15.4.2",
"@playwright/test": "^1.52.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@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": "15.4.2",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lightningcss": "^1.30.1",
"lint-staged": "^16.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"prisma": "^6.16.3",
"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": "^3.1.3",
"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.1.8",
"@types/react-dom": "19.1.6"
}
}