26 lines
600 B
JSON
26 lines
600 B
JSON
{
|
|
"name": "expria-backend",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@hono/node-server": "^1.13.7",
|
|
"@supabase/supabase-js": "^2.49.4",
|
|
"hono": "^4.7.7",
|
|
"stripe": "^17.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.15.3",
|
|
"@vitest/coverage-v8": "^3.1.2",
|
|
"tsx": "^4.19.3",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.1.2"
|
|
}
|
|
}
|