-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1013 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
41
42
{
"name": "typescript_project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.8.2",
"nanoid": "^4.0.0",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@typegoose/typegoose": "^10.0.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/config": "^3.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.0",
"@types/lodash": "^4.14.191",
"@types/nanoid": "^3.0.0",
"@types/node": "^18.11.18",
"@types/pino": "^7.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}