-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "fabacus-reservation-system",
"version": "1.0.0",
"description": "A service that supports a busy online reservation system using NodeJs, Redis and Docker",
"main": "src/app.ts",
"type": "module",
"author": "Zoltán Lantos",
"license": "MIT",
"scripts": {
"dev": "bun run --watch src/app.ts",
"dev:env": "cp .env.example .env",
"start": "bun run src/app.ts",
"start:redis": "docker-compose up redis redis-insight",
"build": "bun build src/app.ts --outfile dist/app.js",
"test": "bun test",
"format": "biome format --write .",
"lint": "biome lint --apply .",
"check": "biome check --apply ."
},
"dependencies": {
"@elysiajs/cors": "^1.0.2",
"@elysiajs/jwt": "^1.0.2",
"@elysiajs/swagger": "^1.0.3",
"elysia": "^1.0.13",
"nanoid": "^5.0.7",
"redis": "^4.6.13"
},
"devDependencies": {
"@biomejs/biome": "^1.7.0",
"@elysiajs/eden": "^1.0.11",
"bun-types": "^1.1.4"
},
"engines": {
"bun": ">=v1.0.17",
"node": ">=v20.5.0"
}
}