-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 898 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 898 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
{
"name": "hono",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"dev:vercel": "vercel dev",
"deploy": "vercel deploy --prod",
"format": "prettier --write ./src",
"test": "vitest",
"test:register": "vitest run tests/register.js",
"test:qr": "vitest run tests/qr.js",
"test:exchange": "vitest run tests/exchange.js",
"test:icon": "vitest run tests/icon.js",
"vercel-build": "npm install --arch=x64 --platform=linux sharp"
},
"dependencies": {
"@hono/node-server": "^1.19.7",
"@supabase/supabase-js": "^2.87.1",
"hono": "^4.10.8",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/node": "^20.11.17",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"form-data": "^4.0.5",
"prettier": "^3.7.4",
"tsx": "^4.7.1",
"typescript": "^5.8.3",
"vercel": "^50.0.1",
"vitest": "^4.0.15"
}
}