-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.23 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.23 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
{
"name": "one-calendar",
"version": "2.3.2",
"private": true,
"packageManager": "bun@1.3.12",
"scripts": {
"dev": "next dev",
"build": "bun run generate:locales && next build",
"start": "next start",
"prepare": "husky",
"lint": "oxlint --fix && eslint . --fix",
"lint:check": "oxlint && eslint . --max-warnings=0",
"type-check": "tsc --noEmit",
"generate:locales": "bun lib/gen-locales.mjs",
"generate:oauth-metadata": "bun lib/gen-oauth-metadata.mjs",
"postinstall": "prisma generate"
},
"dependencies": {
"@clerk/nextjs": "^7.0.0",
"@marsidev/react-turnstile": "latest",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "latest",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-toast": "latest",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "4.1.0",
"framer-motion": "^12.7.4",
"geist": "latest",
"ics": "latest",
"lucide-react": "latest",
"next": "16.2.4",
"next-themes": "latest",
"qr-code-styling": "latest",
"radix-ui": "latest",
"react": "^18",
"react-day-picker": "9.14.0",
"react-dom": "^18",
"recharts": "3.8.1",
"sonner": "2.0.7",
"tailwind-merge": "3.5.0",
"tailwindcss-animate": "^1.0.7",
"react-icons": "5.6.0",
"@prisma/client": "latest",
"zustand": "latest",
"@prisma/adapter-pg": "latest",
"@prisma/extension-accelerate": "latest"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"oxlint --fix",
"eslint --fix"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"devDependencies": {
"@tailwindcss/postcss": "4.2.4",
"@types/node": "25.6.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "8.5.10",
"tailwindcss": "4.2.4",
"typescript": "6.0.3",
"husky": "9.1.7",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@commitlint/types": "20.5.0",
"eslint": "^9.0.0",
"oxlint": "1.60.0",
"eslint-plugin-oxlint": "1.60.0",
"@eslint/js": "10.0.1",
"typescript-eslint": "8.58.2",
"eslint-config-next": "16.2.3",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"prisma": "latest"
}
}