-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.92 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.92 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
96
97
98
{
"name": "garden",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build-frontend": "next build",
"wrangler-dev": "wrangler dev",
"supabase-dev": "supabase start",
"test": "npm run build-backend && NODE_OPTIONS='--experimental-vm-modules --no-warnings' npx jest",
"build-backend": "esbuild ./backend/index.ts --target=esnext --format=esm --bundle --outfile=./out/index.mjs",
"check": "next lint && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperlink-academy/garden.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hyperlink-academy/garden/issues"
},
"homepage": "https://github.com/hyperlink-academy/garden#readme",
"dependencies": {
"@daily-co/daily-js": "^0.49.1",
"@daily-co/daily-react": "^0.11.6",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@graphql-yoga/common": "^2.5.0",
"@headlessui/react": "^1.7.11",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.1",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slider": "^1.0.0",
"@react-aria/overlays": "^3.17.0",
"@react-aria/utils": "^3.22.0",
"@react-spring/web": "^9.7.3",
"@rocicorp/undo": "^0.2.0",
"@serwist/next": "^8.4.4",
"@serwist/sw": "^8.4.4",
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "2.39.8",
"@types/mdx": "^2.0.9",
"@use-gesture/react": "^10.3.0",
"@vercel/analytics": "^1.1.2",
"bcryptjs": "^2.4.3",
"cookie": "^0.4.2",
"eslint": "^8.47.0",
"eslint-config-next": "^13.5.3",
"faunadb": "^4.6.0",
"graphql": "^16.4.0",
"inngest": "^3.17.0",
"jotai": "^1.13.1",
"linkify-react": "^4.1.3",
"next": "^14.2.1",
"perfect-arrows": "^0.3.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use-measure": "^2.1.1",
"recoil": "^0.7.7",
"replicache": "^14.2.2",
"replicache-react": "^5.0.1",
"sharp": "^0.33.2",
"swr": "^2.0.3",
"typescript": "^5.1.6",
"web-push": "^3.6.4",
"zod": "^3.17.10",
"zustand": "^4.3.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230821.0",
"@fauna-labs/fauna-schema-migrate": "^2.2.1",
"@next/bundle-analyzer": "^12.2.5",
"@types/bcryptjs": "^2.4.2",
"@types/cookie": "^0.4.1",
"@types/jest": "^28.1.4",
"@types/node": "^17.0.22",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-window": "^1.8.5",
"@types/web-push": "^3.3.2",
"autoprefixer": "^10.4.4",
"esbuild": "^0.14.27",
"jest": "^28.1.2",
"jest-environment-miniflare": "^2.5.1",
"miniflare": "^3.20230821.0",
"postcss": "^8.4.12",
"prettier": "^2.8.3",
"supabase": "^1.66.0",
"tailwindcss": "^3.0.23",
"ts-jest": "^28.0.5",
"wrangler": "^3.51.0"
}
}