-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 858 Bytes
/
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
35
36
37
{
"scripts": {
"start": "node build/server.js",
"dev": "tsx watch src/server.ts",
"copy-public": "tsx ./scripts/copy-public.ts",
"build": "tsup && yarn copy-public"
},
"dependencies": {
"@airstack/frames": "^1.2.0",
"@hono/node-server": "^1.7.0",
"@sentry/node": "^7.99.0",
"@supabase/supabase-js": "^2.45.2",
"dotenv": "^16.4.5",
"hono": "^3.12.8",
"jimp": "^0.22.10",
"mime": "^4.0.1",
"viem": "^2.9.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"tsx": "^3.12.2",
"typescript": "^5.3.3"
},
"tsup": {
"entry": [
"src/server.ts"
],
"outDir": "build",
"splitting": false,
"sourcemap": false,
"clean": true
},
"license": "MIT"
}