-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 900 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 900 Bytes
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
{
"name": "levante-api-services",
"type": "module",
"scripts": {
"dev": "vite --port 5180",
"vercel:dev": "vercel dev",
"build": "vite build",
"deploy": "vercel deploy",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui --watch",
"test:connection": "vitest run --config vitest.connection.config.ts",
"typecheck": "tsc --noEmit",
"validate-mcps": "node scripts/validate-mcps.mjs",
"list-mcps": "node scripts/list-mcps.mjs"
},
"dependencies": {
"@hono/swagger-ui": "^0.5.2",
"@supabase/supabase-js": "^2.47.11",
"dotenv": "^17.2.3",
"hono": "^4.10.8"
},
"devDependencies": {
"@hono/vite-build": "^1.2.0",
"@hono/vite-dev-server": "^0.23.0",
"@types/node": "^25.0.2",
"@vitest/ui": "^4.0.15",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.15",
"wrangler": "^4.54.0"
}
}