-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 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
{
"name": "anshrathod",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun --bun next dev",
"build": "bun --bun next build",
"start": "bun --bun next start",
"lint": "bun --bun next lint",
"lint:fix": "bun --bun next lint --fix",
"type-check": "bun --bun tsc --noEmit",
"preview": "bun --bun opennextjs-cloudflare build && bun wrangler dev",
"deploy": "bun --bun opennextjs-cloudflare build && bun wrangler deploy",
"cf-typegen": "bun wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"clean": "rm -rf .next && rm -rf out",
"postinstall": "bun --bun next telemetry disable"
},
"dependencies": {
"axios": "^1.11.0",
"change-case": "^5.4.4",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.12",
"icons-react": "^3.7.1",
"lucide-react": "^0.525.0",
"next": "^15.5.2",
"pocketbase": "^0.26.2",
"react": "^19.1.1",
"react-calendar": "^6.0.0",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"react-plock": "^3.5.1",
"recharts": "^3.1.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tailwind-merge": "^3.3.1",
"tailwind-scrollbar-hide": "^4.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.13",
"@types/marked": "^6.0.0",
"@types/node": "^24.3.1",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"autoprefixer": "^10.4.21",
"eslint": "9.31.0",
"eslint-config-next": "15.4.1",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.13",
"typescript": "5.8.3"
}
}