forked from git-dariel/Mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
52
{
"name": "mongo",
"version": "1.0.0",
"description": "Express Typescript Service Oriented Architecture",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node index.ts",
"build": "tsc",
"lint": "eslint . --fix",
"test": "jest",
"postinstall": "npm run build"
},
"dependencies": {
"cloudinary": "^2.5.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-extract-routes": "^2.0.0",
"helmet": "^6.0.1",
"mongoose": "^7.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-themes": "^1.4.3",
"swagger-ui-express": "^5.0.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/cors": "^2.8.13",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^18.14.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"nodemon": "^2.0.20",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"typescript-eslint": "^8.14.0"
},
"author": "Dariel Avila",
"license": "ISC"
}