-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.19 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
{
"name": "studio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"reset": "npx supabase db reset",
"diff": "npx supabase db diff -f feature",
"migration": "npx supabase migration new feature",
"update-types": "npx supabase gen types typescript --local > src/types/supabase.ts",
"update-db": "npm run diff && npm run reset && npm run update-types",
"prepare": "husky install",
"pretty-staged": "pretty-quick --staged",
"pretty-all": "prettier {*,**/*}.{js,ts,tsx,json,css,md} --write --no-error-on-unmatched-pattern",
"cypress": "npx cypress open"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^6.2.0",
"@fontsource/inter": "^5.0.8",
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@supabase/auth-helpers-nextjs": "^0.8.1",
"@vercel/analytics": "^1.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"core-js": "^3.33.2",
"langchain": "^0.0.163",
"lucide-react": "^0.284.0",
"mobx": "^6.10.2",
"next": "^13.5.3",
"next-swagger-doc": "^0.4.0",
"next-themes": "^0.2.1",
"pdf-parse": "^1.1.1",
"pg": "^8.11.3",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"redoc": "^2.1.3",
"styled-components": "^6.1.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@types/pg": "^8.10.5",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@types/swagger-ui-react": "^4.18.1",
"autoprefixer": "^10.4.16",
"cypress": "^13.3.1",
"encoding": "^0.1.13",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.3",
"husky": "^8.0.3",
"postcss": "^8.4.14",
"pretty-quick": "^3.1.3",
"supabase": "^1.99.5",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
}
}