-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
115 lines (115 loc) · 3.69 KB
/
package.json
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "otter",
"description": "Otter is a simple bookmark manager",
"author": {
"name": "Zander Martineau",
"url": "https://zander.wtf"
},
"version": "2.4.1",
"repository": {
"type": "git",
"url": "https://github.com/mrmartineau/Otter"
},
"private": true,
"scripts": {
"predev": "npm run supabase:types",
"dev": "next dev -p 5678",
"prebuild": "npm run supabase:types",
"build": "next build",
"prestart": "npm run supabase:types",
"start": "next start",
"lint": "next lint",
"format": "npx prettier --write . -l",
"type-check": "tsc --noEmit",
"supabase": "supabase",
"supabase:types": "npm run supabase:types:app",
"--note--": "the project ID in the script below will need to be updated to match your own Supabase project ID",
"supabase:types:app": "npx supabase gen types typescript --project-id \"ffpbylcvwtyozyrplqic\" --schema public > src/types/supabase.ts",
"supabase:dumpdb": "npx supabase db pull",
"supabase:setup": "npx supabase db push",
"supabase:seed": "npx supabase start",
"supabase:link": "npx supabase link --project-ref ffpbylcvwtyozyrplqic",
"test": "vitest"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@phosphor-icons/react": "^2.0.15",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.39.3",
"@tanstack/react-query": "^5.17.19",
"ai": "^2.2.31",
"change-case": "^5.4.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"date-fns": "^3.3.1",
"email-validator": "^2.0.4",
"lodash.throttle": "^4.1.1",
"match-words": "^1.0.0",
"memoize-one": "^6.0.0",
"next": "^14.1.0",
"next-usequerystate": "^1.16.0",
"openai": "^4.26.0",
"p-map": "^7.0.1",
"postcss": "8.4.33",
"proper-url-join": "^2.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.3",
"react-markdown": "^9.0.1",
"react-select": "^5.8.0",
"react-textarea-autosize": "^8.5.3",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-squeeze-paragraphs": "^6.0.0",
"remark-truncate-links": "^1.0.3",
"rss-converter": "^1.1.6",
"sonner": "^1.3.1",
"stream": "^0.0.2",
"string_decoder": "^1.3.0",
"tailwind-merge": "^2.2.1",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "^1.0.7",
"timers": "^0.1.1",
"tiny-relative-date": "^1.3.0",
"title": "^3.5.3",
"typescript": "5.3.3",
"use-click-away": "^0.0.1"
},
"devDependencies": {
"@csstools/postcss-global-data": "^2.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "20.12.12",
"@types/proper-url-join": "^2.1.4",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@types/title": "^3.4.3",
"@types/tldjs": "^2.3.4",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.1",
"encoding": "^0.1.13",
"eslint-config-next": "^14.2.3",
"happy-dom": "^14.11.0",
"open-props": "^1.7.4",
"postcss-axis": "^0.1.2",
"postcss-custom-media": "^10.0.6",
"postcss-extend-rule": "^4.0.0",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.5.13",
"prettier-plugin-tailwindcss": "^0.5.14",
"supabase": "^1.167.4",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}