-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "callbackcloser",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"vercel-build": "npm run db:generate && npm run db:deploy && npm run build",
"start": "next start",
"test": "tsx --test tests/*.test.ts",
"test:twilio": "tsx --test tests/twilio-*.test.ts",
"typecheck": "node -e \"require('node:fs').rmSync('.next/types', { recursive: true, force: true })\" && tsc --noEmit",
"lint": "next lint",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:validate": "prisma validate",
"db:push": "prisma db push",
"db:smoke": "tsx scripts/db_smoke.ts",
"db:studio": "prisma studio",
"env:check": "tsx scripts/check_env.ts",
"webhooks:print": "tsx scripts/print_webhook_urls.ts",
"preflight:providers": "tsx scripts/provider_preflight.ts",
"preflight": "npm run env:check && npm run db:validate && npm test && npm run lint && npm run typecheck && npm run build",
"postinstall": "prisma generate"
},
"dependencies": {
"@clerk/nextjs": "^6.23.3",
"@prisma/client": "^5.22.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"libphonenumber-js": "^1.11.14",
"next": "^14.2.24",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stripe": "^18.0.0",
"tailwind-merge": "^2.5.5",
"twilio": "^5.4.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.17.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.24",
"postcss": "^8.4.49",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5.7.2"
},
"overrides": {
"@next/eslint-plugin-next": {
"glob": "10.5.0"
}
}
}