-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "codehive-elysia-template",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"keywords": [
"elysiajs",
"bun",
"drizzle",
"typescript",
"backend",
"template"
],
"author": "Code-Hive-Colombia",
"license": "MIT",
"packageManager": "bun@1.2.14",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --target node --outdir ./dist",
"start": "bun run --env-file=.env dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@elysiajs/node": "1.3.0",
"@elysiajs/swagger": "1.3.0",
"drizzle-orm": "^0.44.2",
"elysia": "1.3.4",
"reflect-metadata": "0.2.2",
"tsyringe": "4.10.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "3.25.56"
},
"devDependencies": {
"@eslint/js": "9.28.0",
"@types/bun": "1.2.15",
"@types/eslint-plugin-security": "3.0.0",
"@types/node": "22.15.30",
"@typescript-eslint/parser": "8.33.1",
"drizzle-kit": "^0.31.1",
"eslint": "9.28.0",
"eslint-config-prettier": "10.1.5",
"eslint-import-resolver-typescript": "4.4.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.4.1",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-unicorn": "59.0.1",
"globals": "16.2.0",
"prettier": "3.5.3",
"typescript": "5.8.3",
"typescript-eslint": "8.33.1",
"vitest": "3.2.2"
},
"engines": {
"node": ">=24.0.0"
}
}