-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 993 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
{
"name": "mongo-image-api",
"version": "1.0.0",
"description": "<p align=\"center\"> <a href=\"https://skillicons.dev\"> <img src=\"https://skillicons.dev/icons?i=mongodb,typescript,postman\" /> </a> </p> <h1 align=\"center\">IMAGE UPLOAD/RETRIVE API</h1>",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "ts-node src/index.ts",
"dev": "ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"mime-types": "^2.1.35",
"mongodb": "6.3",
"mongoose": "^8.1.0",
"multer": "^1.4.5-lts.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.5"
}
}