-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1023 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
37
38
39
40
{
"name": "express-graph",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.0",
"@types/nanoid": "^3.0.0",
"@types/node": "^20.12.7",
"@types/pino": "^7.0.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dayjs": "^1.11.11",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.3.3",
"nanoid": "^5.0.7",
"pino": "^9.0.0",
"pino-http": "^9.0.0",
"pino-pretty": "^11.0.0",
"typescript": "^5.4.5",
"zod": "^3.23.5"
},
"scripts": {
"dev": "NODE_ENV=development bun run --hot --watch server/index.ts",
"start": "NODE_ENV=production bun run --hot --watch server/index.ts"
}
}