-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.28 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.28 KB
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
{
"alert": "THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. Instead, edit package.ts and run 'ts-pkg' to regenerate.",
"name": "@bygnet/api",
"description": "Elysia-based API for Byg Platform.",
"version": "1.7.0",
"module": "src/main.ts",
"scripts": {
"dev": "bun run --watch src/main.ts",
"format": "prettier --ignore-path .prettierignore --write .",
"loadTest": "autocannon -c 300 -p 10 -d 30 http://localhost:5001/latest-posts",
"db:generate": "bunx drizzle-kit generate && bunx drizzle-kit generate --config drizzle.config.pg.ts",
"db:push": "bunx drizzle-kit push && bunx drizzle-kit push --config drizzle.config.pg.ts",
"db:push:dev": "bunx drizzle-kit push",
"db:push:prod": "bunx drizzle-kit push --config drizzle.config.pg.ts"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@elysiajs/html": "^1.4.0",
"@elysiajs/swagger": "^1.3.1",
"@opk/ts-pkg": "^0.6.1",
"@types/jsonwebtoken": "^9.0.10",
"argon2": "^0.44.0",
"drizzle-orm": "^0.45.1",
"elysia": "latest",
"jsonwebtoken": "^9.0.3",
"postgres": "^3.4.8",
"web-push": "^3.6.7"
},
"devDependencies": {
"@bygnet/types": "^1.7.0",
"@types/web-push": "^3.6.4",
"bun-types": "latest",
"drizzle-kit": "^0.31.8",
"prettier": "^3.7.4"
}
}