forked from oss-apps/split-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.4 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.4 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
{
"name": "split",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build --no-lint",
"just-build": "next build --no-lint",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:dev": "prisma migrate dev",
"db:seed": "prisma db seed",
"prisma:prod": "prisma migrate deploy",
"dev": "next dev --turbopack",
"postinstall": "prisma generate",
"generate": "prisma generate",
"lint": "oxlint --type-aware",
"start": "sleep 3 && pnpm prisma:prod && next start",
"start-with-latest-migrations": "prisma migrate deploy && next start",
"d": "pnpm dx && pnpm dev",
"dx": "pnpm i && pnpm dx:up && pnpm db:dev",
"dx:up": "docker compose -f docker/dev/compose.yml up -d",
"dx:down": "docker compose -f docker/dev/compose.yml down",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.515.0",
"@aws-sdk/s3-request-presigner": "^3.515.0",
"@ducanh2912/next-pwa": "^10.2.9",
"@heroicons/react": "^2.1.1",
"@hookform/resolvers": "^3.3.4",
"@icons-pack/react-simple-icons": "^13.7.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.16.2",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-query": "^5.79.2",
"@trpc/client": "^11.2.0",
"@trpc/next": "^11.2.0",
"@trpc/react-query": "^11.2.0",
"@trpc/server": "^11.2.0",
"boring-avatars": "^1.10.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.1.1",
"date-fns": "^3.3.1",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"input-otp": "^1.2.3",
"lucide-react": "^0.544.0",
"nanoid": "^5.0.6",
"next": "15.4.7",
"next-auth": "^4.24.5",
"next-i18next": "^15.4.2",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.8",
"radix-ui": "^1.4.2",
"react": "19.1.1",
"react-day-picker": "^9.7.0",
"react-dom": "19.1.1",
"react-hook-form": "^7.50.1",
"react-i18next": "^15.5.3",
"sonner": "^1.4.0",
"superjson": "^2.2.1",
"vaul": "^1.1.2",
"web-push": "^3.6.7",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.10",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"@types/nodemailer": "^6.4.15",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/web-push": "^3.6.3",
"@typescript/native-preview": "7.0.0-dev.20250921.1",
"husky": "^9.1.7",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jiti": "^2.5.1",
"lint-staged": "^16.1.5",
"oxlint": "1.19.0",
"oxlint-tsgolint": "0.2.0",
"postcss": "^8.4.31",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.12",
"prisma": "^6.16.2",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^4.1.10",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "~5.7.2"
},
"ct3aMetadata": {
"initVersion": "7.25.2"
},
"packageManager": "pnpm@10.11.0",
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"@tailwindcss/oxide",
"core-js",
"esbuild",
"prisma",
"sharp",
"unrs-resolver"
],
"overrides": {
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2"
}
}
}