-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
92 lines (92 loc) · 2.93 KB
/
package.json
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
{
"name": "deals-for-devs",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "next dev",
"preinstall": "npx only-allow pnpm",
"build": "pnpm xata-codegen && prisma generate && next build",
"start": "next start",
"lint": "next lint",
"lint-commit": "npx --no-install commitlint --edit \"$1\"",
"xata-init": "xata init --db $XATA_HTTPS_DATABASE_URL --no-input --yes --codegen src/xata.ts --force",
"xata-codegen": "xata codegen --db $XATA_HTTPS_DATABASE_URL -o src/xata.ts",
"email:dev": "email dev --dir ./src/emails -p 3001",
"inngest:dev": "inngest-cli dev --no-discovery -u http://localhost:3000/api/inngest"
},
"dependencies": {
"@clerk/nextjs": "^5.4.1",
"@prisma/client": "^5.12.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@react-email/components": "^0.0.25",
"@react-email/render": "^1.0.1",
"@react-email/tailwind": "^0.1.0",
"@sentry/nextjs": "^7.106.1",
"@t3-oss/env-nextjs": "^0.9.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-table": "^8.12.0",
"@types/uuid": "^9.0.8",
"@uidotdev/usehooks": "^2.4.1",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"@xata.io/cli": "^0.15.15",
"@xata.io/client": "^0.29.5",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"inngest": "^3.22.13",
"lucide-react": "^0.340.0",
"next": "^15.0.0-rc.0",
"next-plausible": "^3.12.0",
"posthog-js": "^1.108.3",
"prisma": "^5.12.1",
"react": "^19.0.0-rc-4f604941-20240830",
"react-countdown": "^2.3.5",
"react-day-picker": "^8.10.0",
"react-dom": "^19.0.0-rc-4f604941-20240830",
"react-dropzone": "^14.2.3",
"react-email": "^3.0.1",
"react-hot-toast": "^2.4.1",
"react-hotkeys-hook": "^4.5.0",
"react-icons": "^5.0.1",
"resend": "^3.2.0",
"sharp": "^0.33.2",
"swr": "^2.2.5",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"ts-key-enum": "^2.0.12",
"ts-node": "^10.9.2",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "19.0.3",
"@commitlint/config-conventional": "19.0.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-next": "^15.0.0-rc.0",
"husky": "^9.0.11",
"inngest-cli": "^0.29.9",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}