-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 860 Bytes
/
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
{
"name": "navigator-backend",
"module": "src/server.ts",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check .",
"tsoa": "tsoa routes && tsoa spec",
"prestart": "bun run tsoa",
"start": "bun run src/server.ts",
"drizzle:auth": "bunx drizzle-kit generate && bunx drizzle-kit migrate"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/luxon": "^3.4.2",
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.30.5",
"prettier": "^3.5.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@scalar/express-api-reference": "^0.4.186",
"better-auth": "^1.1.19",
"cors": "^2.8.5",
"drizzle-orm": "^0.40.0",
"express": "^4.21.2",
"luxon": "^3.5.0",
"pg": "^8.13.3",
"redis": "^4.7.0",
"tsoa": "^6.6.0"
}
}