-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
53
54
55
56
57
58
59
60
{
"name": "metasave-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start:dev": "nodemon /app/src/index.ts",
"start:prod": "node /app/dist/src/index.js",
"dev": "nodemon src/index.ts",
"prod": "node dist/src/index.js",
"build": "tsc -p .",
"test": "jest src/test/app.test.js"
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"fs-extra": "^11.1.0",
"helmet": "^6.0.1",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.0",
"mailgen": "^2.0.27",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"mongoose": "^6.7.5",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"redis": "^4.5.1",
"sharp": "^0.31.3",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.6.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/fs-extra": "^9.0.13",
"@types/hpp": "^0.2.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.10",
"@types/nodemailer": "^6.4.6",
"@types/sharp": "^0.31.0",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}