-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 KB
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
{
"name": "monitor-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "nodemon src/index.ts",
"start:prod": "node dist/index.js",
"build": "rm -rf ./dist/* && tsc --build",
"test": "export NODE_ENV=test && jest"
},
"keywords": [],
"author": "Abdelrahman Ashraf",
"license": "ISC",
"dependencies": {
"@typegoose/typegoose": "^8.3.0",
"@types/agenda": "^4.1.0",
"@types/nodemailer": "^6.4.6",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.9",
"axios": "^1.1.3",
"babel-jest": "^29.2.1",
"body-parser": "^1.20.1",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.8",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "~6.6.0",
"morgan": "^1.10.0",
"nodemailer": "^6.8.0",
"redis": "^4.3.1",
"reflect-metadata": "^0.1.13",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.2",
"@types/express-unless": "^2.0.1",
"@types/jest": "^27.5.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.18.0",
"jest": "^27.5.1",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"ts-jest": "^27.1.5",
"ts-node": "^10.2.1",
"typescript": "^4.8.4"
}
}