-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.35 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.35 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
{
"name": "@hermesloom/matchmind",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier-fix": "prettier --write .",
"supabase:start": "npx supabase start",
"supabase:stop": "npx supabase stop",
"supabase:status": "npx supabase status",
"supabase:restart": "npm run supabase:stop && npm run supabase:start",
"supabase:reset": "npx supabase db reset",
"supabase:link": "npx supabase link",
"supabase:generate-types": "npx supabase gen types typescript --local --schema public > types_db.ts",
"supabase:generate-migration": "npx supabase db diff | npx supabase migration new",
"supabase:generate-seed": "npx supabase db dump --data-only -f supabase/seed.sql",
"supabase:push": "npx supabase db push",
"supabase:pull": "npx supabase db pull"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@dotenvx/dotenvx": "^1.24.1",
"@next/third-parties": "^15.0.4",
"@nextui-org/react": "^2.4.8",
"@nextui-org/system": "^2.2.6",
"@nextui-org/theme": "^2.2.11",
"@pinecone-database/pinecone": "^4.0.0",
"@react-aria/ssr": "^3.9.6",
"@react-aria/visually-hidden": "^3.8.17",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.46.1",
"ajv": "^8.17.1",
"ajv-ts": "^0.9.0",
"clsx": "^2.1.1",
"fly-admin": "^1.6.1",
"framer-motion": "^11.11.11",
"fs-extra": "^11.2.0",
"intl-messageformat": "^10.7.4",
"lodash": "^4.17.21",
"next": "^15.0.4",
"openai": "^4.70.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"tsx": "^4.19.2",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.9",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-next": "^15.0.3",
"globals": "^15.13.0",
"postcss": "^8.4.47",
"prettier": "^3.4.2",
"supabase": "^1.207.9",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vitest": "^2.1.6"
}
}