-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.64 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.64 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
{
"name": "landcoc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"build:cf": "npm run build && npx @opennextjs/cloudflare build",
"start": "next start",
"lint": "next lint",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0",
"version": "npm run changelog && git add CHANGELOG.md",
"test:workflow": "bash scripts/test-workflow.sh",
"test:ci": "npx act -j test",
"test": "echo 'No tests yet'",
"type-check": "tsc --noEmit",
"release": "changeset publish",
"changeset": "changeset"
},
"dependencies": {
"@auth/core": "^0.34.2",
"@radix-ui/react-aspect-ratio": "^1.1.7",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-oauth/google": "^0.12.1",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@supabase/supabase-js": "^2.58.0",
"@tabler/icons-react": "^3.26.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cobe": "^0.6.3",
"crypto-browserify": "^3.12.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^11.15.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.469.0",
"mini-svg-data-uri": "^1.4.4",
"next": "^16.1.6",
"next-auth": "^4.24.11",
"posthog-js": "^1.203.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"stream-browserify": "^3.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.171.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/eslintrc": "^3.2.0",
"@opennextjs/cloudflare": "^1.16.5",
"@types/eventsource": "^1.1.15",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.17.10",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.171.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"act": "^0.0.6",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.22",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"engines": {
"node": ">=22.0.0"
}
}