-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.12 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
{
"name": "web-planner",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"dev": "next dev",
"email:dev": "email dev",
"email:export": "email export",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"knip": "knip",
"lint": "pnpm lint:style && pnpm lint:typecheck",
"lint:fix": "eslint . --fix",
"lint:style": "next typegen & eslint . --max-warnings=0",
"lint:typecheck": "next typegen & tsc --noEmit",
"start": "next start"
},
"lint-staged": {
"*": "prettier -w --ignore-unknown"
},
"prettier": "@solvro/config/prettier",
"dependencies": {
"@base-ui/react": "^1.7.0",
"@better-auth/cimd": "^1.7.3",
"@better-auth/mcp": "^1.7.3",
"@better-auth/oauth-provider": "^1.7.3",
"@better-auth/passkey": "1.7.3",
"@hookform/resolvers": "^5.9.1",
"@modelcontextprotocol/server": "^2.0.0",
"@next/third-parties": "^16.3.4",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-query": "^5.102.8",
"@types/canvas-confetti": "^1.9.0",
"better-auth": "^1.7.3",
"better-auth-evp": "^1.0.8",
"better-auth-usos": "^1.1.2",
"canvas-confetti": "^1.9.4",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"framer-motion": "^13.1.1",
"html-to-image": "^1.11.13",
"input-otp": "^1.5.0",
"ioredis": "^6.0.0",
"isomorphic-dompurify": "^4.1.0",
"jose": "^6.2.10",
"jotai": "^2.20.3",
"jotai-family": "^1.1.0",
"lucide-react": "^1.39.0",
"motion": "^13.1.1",
"next": "16.3.4",
"next-themes": "^0.4.6",
"nodemailer": "^9.1.1",
"oauth-1.0a": "^2.2.6",
"pg": "^8.23.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-email": "^6.9.3",
"react-hook-form": "^7.87.0",
"react-icons": "^5.7.0",
"sharp": "^0.35.4",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.5.4"
},
"devDependencies": {
"@commitlint/config-conventional": "^21.2.2",
"@react-email/ui": "6.9.3",
"@solvro/config": "^3.0.1",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^26.4.1",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.23.1",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.5",
"knip": "^6.34.0",
"postcss": "^8.5.26",
"postcss-load-config": "^6.0.1",
"prettier": "^3.9.6",
"prettier-plugin-packagejson": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.13",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22.0.0"
},
"volta": {
"node": "25.9.0"
}
}