-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
49
50
51
{
"name": "blogify-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./src/app.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/config": "^3.3.3",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.201",
"@types/mongoose": "^5.11.97",
"@types/nanoid": "^3.0.0",
"@types/node": "^20.9.0",
"@types/pino": "^7.0.5",
"@types/response-time": "^2.3.8",
"@types/swagger-jsdoc": "^6.0.3",
"@types/swagger-ui-express": "^4.1.6",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"bcrypt": "^5.1.1",
"config": "^3.3.9",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.0.0",
"nanoid": "3.3.4",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3",
"prom-client": "^15.0.0",
"response-time": "^2.3.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"typescript": "^5.2.2",
"zod": "^3.22.4"
}
}