-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.2 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
{
"name": "lex-fanbot",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "yarn prettier --write .",
"functions:new": "supabase functions new",
"functions:deploy": "supabase functions deploy --no-verify-jwt",
"functions:classification": "deno run --allow-net --allow-env ./supabase/functions/classification/index.ts --port=3000",
"functions:query": "deno run --allow-net --allow-env ./supabase/functions/query-podcast/index.ts --port=3001",
"functions:search": "deno run --allow-net --allow-env ./supabase/functions/semantic-search/index.ts --port=3002",
"update-types": "supabase gen types typescript --project-id \"$SUPABASE_PID\" > ./supabase/db-types.ts",
"secrets:push": "supabase secrets set --env-file .env"
},
"dependencies": {
"@supabase/supabase-js": "^2.24.0",
"vue": "^3.2.47"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"autoprefixer": "^10.4.14",
"openai": "^3.3.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"supabase": "^1.64.8",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^4.3.9"
}
}