forked from hashdocs/hashdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.6 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.6 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
{
"name": "hashdocs",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "concurrently \"next dev\" \"supabase functions serve --no-verify-jwt --env-file supabase/functions/.env\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"sb:types": "supabase gen types typescript --local > \"types/supabase.types.ts\" && cd types && powershell -ExecutionPolicy Bypass -File .\\mod_types.ps1",
"sb:migrate": "supabase db diff --schema public --schema storage --schema auth -f"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.4",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.5",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"@uppy/core": "^3.2.1",
"@uppy/dashboard": "^3.4.1",
"@uppy/drag-drop": "^3.0.2",
"@uppy/file-input": "^3.0.2",
"@uppy/progress-bar": "^3.0.2",
"@uppy/react": "^3.1.2",
"@uppy/status-bar": "^3.2.0",
"@uppy/xhr-upload": "^3.3.0",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "^10.4.14",
"clsx": "^2.1.1",
"cookies-next": "^4.2.1",
"csstype": "^3.0.10",
"date-fns": "^2.30.0",
"dayjs": "^1.11.8",
"disposable-email-detector": "^1.0.3",
"eslint": "8.42.0",
"eslint-config-next": "^14.2.4",
"framer-motion": "^10.12.16",
"gray-matter": "^4.0.3",
"jsonwebtoken": "^9.0.0",
"lucide-react": "^0.252.0",
"next": "^14.2.4",
"pdfjs-dist": "^3.7.107",
"postcss": "^8.4.24",
"react": "^18.3.1",
"react-datepicker": "^4.14.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-pdf": "^7.1.2",
"react-spinners": "^0.13.8",
"react-tooltip": "^5.13.1",
"recharts": "^2.7.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"sharp": "^0.33.4",
"stripe": "^15.12.0",
"tailwindcss": "^3.3.2",
"type-fest": "^4.20.1",
"typescript": "5.1.3",
"unified": "^10.1.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/jsonwebtoken": "^9.0.2",
"@types/react-datepicker": "^4.11.2",
"concurrently": "^8.2.0",
"encoding": "^0.1.13",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwind-scrollbar": "^3.0.4",
"ts-node": "^10.9.2"
}
}