-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.3 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
{
"name": "ossfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"build:cf": "opennextjs-cloudflare build && node scripts/build-cf-pages.js",
"preview:cf": "opennextjs-cloudflare build && node scripts/build-cf-pages.js && opennextjs-cloudflare preview",
"start": "next start",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"type-check": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepare": "husky",
"test": "vitest run"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^9.1.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.2.0",
"@supabase/supabase-js": "^2.49.4",
"@swc/helpers": "^0.5.23",
"@types/d3-drag": "^3.0.7",
"@types/d3-force": "^3.0.10",
"@types/d3-selection": "^3.0.11",
"@types/d3-zoom": "^3.0.8",
"@upstash/redis": "^1.38.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-drag": "^3.0.0",
"d3-force": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"framer-motion": "^12.11.4",
"html-to-image": "^1.11.13",
"lucide-react": "^0.511.0",
"next": "^16.2.9",
"next-intl": "^4.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.15.4",
"tailwind-merge": "^3.3.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@emnapi/core": "^1.11.1",
"@emnapi/runtime": "^1.11.1",
"@opennextjs/cloudflare": "^1",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.4",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"postcss": "^8",
"prettier": "^3.9.6",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.10",
"wrangler": "^4"
}
}