generated from mmmoli/decent-nextjs-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.52 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "flua-launch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -c auto -t 'HH:mm:ss.SSS' -p '[{name} {time}]' bun:dev:*",
"dev:next": "next dev",
"dev:db:studio": "drizzle-kit studio",
"dev:db:turso": "turso dev --db-file ./db/dev.db",
"build": "next build",
"check": "tsc --noEmit",
"lint": "next lint --fix",
"format": "prettier --write .",
"start": "next start",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"ui:add": "bunx --bun shadcn-ui@latest add",
"dev:notifications": "bunx novu@latest dev --port 3000 --route /api/webhooks/novu",
"events:migrate": "bun run src/lib/shared/services/events/api/migrate.ts"
},
"dependencies": {
"@100mslive/react-sdk": "^0.10.14",
"@100mslive/server-sdk": "^0.3.0",
"@auth/drizzle-adapter": "^1.4.1",
"@fontsource/space-grotesk": "^5.0.18",
"@hookform/resolvers": "^3.6.0",
"@libsql/client": "^0.6.2",
"@liveblocks/client": "^2.2.1",
"@liveblocks/react": "^2.2.1",
"@liveblocks/zustand": "^2.2.1",
"@next/bundle-analyzer": "^14.2.5",
"@next/third-parties": "^14.2.4",
"@novu/framework": "^2.0.0-canary.4",
"@novu/node": "^2.0.0-canary.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.1",
"@react-email/components": "^0.0.22",
"@sentry/nextjs": "^8.12.0",
"@stripe/stripe-js": "^4.0.0",
"@t3-oss/env-nextjs": "^0.10.1",
"@tabler/icons-react": "^3.7.0",
"@upstash/qstash": "^2.6.2",
"boolean": "^3.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"drizzle-zod": "^0.5.1",
"immer": "^10.1.1",
"lucide-react": "^0.394.0",
"next": "14.2.4",
"next-auth": "5.0.0-beta.19",
"next-plausible": "^3.12.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-email": "^2.1.6",
"react-hook-form": "^7.52.0",
"react-spinners": "^0.13.8",
"rich-domain": "^1.23.2",
"sonner": "^1.5.0",
"sst": "^3.0.33",
"stripe": "^15.12.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.1",
"zod-validation-error": "^3.3.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"concurrently": "^8.2.2",
"drizzle-kit": "^0.22.7",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"postcss": "^8.4.38",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
}
}