-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "bun-typescript",
"version": "1.0.0",
"author": "Leonardo Courbassier Martins <leonardo@cbsr.io>",
"repository": "git@github.com:CBSRdev/node-type.git",
"main": "src/index.ts",
"devDependencies": {
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"bun-types": "^1.0.13",
"eslint": "^8.54.0",
"typescript": "^5.3.2"
},
"license": "MIT",
"private": true,
"scripts": {
"autoload": "bash scripts/autoload.sh",
"prestart": "bun run autoload",
"start": "bun --watch run src/index.ts",
"lint": "eslint . --ext .ts",
"pretest": "bun run autoload",
"test": "bun test --coverage",
"create:domain": "bash scripts/create.sh",
"typeorm": "bun run typeorm",
"docker:up": "docker-compose up -d --build",
"docker:down": "docker-compose down"
},
"dependencies": {
"@bogeychan/elysia-logger": "^0.0.13",
"@elysiajs/cookie": "^0.7.0",
"@elysiajs/cors": "^0.7.2",
"@elysiajs/jwt": "^0.7.0",
"@types/lodash": "^4.14.202",
"chalk": "^5.3.0",
"elysia": "^0.7.29",
"http": "^0.0.1-security",
"http-status": "^1.7.3",
"lodash": "^4.17.21",
"pg": "^8.11.3",
"pino-pretty": "^10.2.3",
"redis": "^4.6.12",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typeorm": "^0.3.17",
"typeorm-naming-strategies": "^4.1.0"
}
}