-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"$schema": "https://json.schemastore.org/package.json",
"name": "hot-shot-starter-kit",
"type": "module",
"version": "1.0.0",
"description": "Hot Shot Starter Kit. A starter kit for building APIs with Hono, Hot Shot, and Postgres.",
"keywords": ["hot-shot", "starter-kit", "api", "postgres", "hono", "biome"],
"author": "Mr. Wayne",
"license": "MIT",
"cpu": ["x64"],
"dist": {
"directory": "dist",
"type": "standalone"
},
"main": "dist/app.js",
"scripts": {
"start": "bun run ./dist/app.js",
"vercel:prod": "node ./server/app.js",
"start:multi": "bun run ./multi-threaded-server.js",
"build": "rm -rf dist && bun run ./bundler.js",
"dev": "bun run --hot --no-clear-screen src/app.ts",
"lint": "bunx biome check --write src",
"hotshot": "bun run --bun ./node_modules/@a4arpon/hotshot/build/main.js"
},
"dependencies": {
"@a4arpon/hotshot": "npm:@jsr/a4arpon__hotshot",
"@asteasolutions/zod-to-openapi": "^7.2.0",
"@faker-js/faker": "^9.2.0",
"@hono/node-server": "^1.13.6",
"@hono/swagger-ui": "^0.4.1",
"bullmq": "^5.25.4",
"drizzle-orm": "^0.36.1",
"drizzle-zod": "^0.5.1",
"hono": "^4.6.9",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.16",
"postgres": "^3.4.5",
"sharp": "^0.33.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/nodemailer": "^6.4.16",
"drizzle-kit": "^0.28.0",
"typescript": "^5.6.3"
}
}