-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 945 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 945 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
{
"name": "@junobuild/api",
"version": "0.0.3",
"description": "Self-hostable API service for the Juno ecosystem",
"author": "David Dal Busco (https://daviddalbusco.com)",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development bun run --watch src/index.ts",
"build": "NODE_ENV=production bun build --compile --minify-whitespace --minify-syntax --target bun --outfile ./build/server ./src/index.ts",
"format": "bunx prettier . --write",
"format:check": "bunx prettier --check .",
"lint": "bunx biome lint --write",
"check": "bunx biome check --write",
"test": "bun test --env-file=.env.test"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@elysiajs/openapi": "^1.4.14",
"elysia": "latest",
"jose": "^6.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"bun-types": "latest",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "^4.3.0"
},
"module": "src/index.js"
}