-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.12 KB
/
package.json
File metadata and controls
95 lines (95 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
{
"name": "kil.dev",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"build:runtimes": "bun scripts/build-runtimes.ts",
"prebuild": "bun run build:runtimes && bun run sync:pet-gallery",
"predev": "bun run build:runtimes",
"prepreview": "bun run prebuild",
"check": "oxlint --deny-warnings . && tsc --noEmit",
"check:all": "bun run typecheck && bun run format:check && bun run lint && bun run knip",
"fix:all": "bun run format:write && bun run lint:fix",
"dev": "next dev --turbo",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "oxlint --deny-warnings .",
"lint:fix": "oxlint --fix .",
"preview": "next build && next start",
"start": "next start",
"typecheck": "bun run build:runtimes && tsc --noEmit",
"sync:pet-gallery": "bun scripts/sync-pet-gallery.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"test:all": "vitest run && playwright test",
"knip": "knip",
"knip:deps": "knip --dependencies"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "1.1.15",
"@radix-ui/react-collapsible": "1.1.12",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-switch": "1.2.6",
"@radix-ui/react-tooltip": "1.2.8",
"@t3-oss/env-nextjs": "0.13.10",
"@vercel/blob": "2.0.0",
"babel-plugin-react-compiler": "1.0.0",
"canvas-confetti": "1.9.4",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"convex": "1.31.5",
"date-fns": "4.1.0",
"image-size": "2.0.2",
"js-cookie": "3.0.5",
"lucide-react": "0.562.0",
"motion": "12.28.1",
"next": "16.1.4",
"posthog-js": "1.332.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-photo-album": "3.4.0",
"react-snowfall": "2.4.0",
"sharp": "0.34.5",
"sonner": "2.0.7",
"tailwind-merge": "3.4.0",
"uuid": "13.0.0",
"vaul": "1.1.2",
"yet-another-react-lightbox": "3.28.0",
"zod": "4.3.5"
},
"devDependencies": {
"@playwright/test": "1.57.0",
"@tailwindcss/postcss": "4.1.18",
"@types/canvas-confetti": "1.9.0",
"@types/js-cookie": "3.0.6",
"@types/node": "24.10.9",
"@types/react": "19.2.9",
"@types/react-dom": "19.2.3",
"esbuild": "0.27.2",
"knip": "5.82.1",
"oxlint": "1.41.0",
"postcss": "8.5.6",
"prettier": "3.8.1",
"prettier-plugin-multiline-arrays": "4.1.3",
"prettier-plugin-organize-attributes": "1.0.0",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "3.0.0",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "4.1.18",
"tw-animate-css": "1.4.0",
"typescript": "5.9.3",
"vitest": "4.0.17"
},
"ct3aMetadata": {
"initVersion": "7.39.3"
}
}