-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "marocship-express-api",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only src/server.ts",
"build": "tsc && tsc-alias",
"start": "pm2-runtime start ecosystem.config.js --env production",
"start:dev": "pm2 start ecosystem.config.js",
"kill": "pm2 kill",
"test": "jest",
"monit": "pm2 monit"
},
"dependencies": {
"@sentry/node": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^11.0.0",
"express": "^4.17.2",
"express-rate-limit": "^6.1.0",
"express-validator": "^6.14.0",
"generate-password": "^1.7.0",
"helmet": "^5.0.1",
"iron-session": "^6.0.5",
"jsonwebtoken": "^8.5.1",
"mailgen": "^2.0.16",
"mongoose": "^6.1.6",
"morgan": "^1.10.0",
"nanoid": "^3.2.0",
"node-fetch": "2",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.2",
"pm2": "^5.1.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.7",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.7",
"@types/node-fetch": "^3.0.3",
"@types/node-schedule": "^1.3.2",
"@types/nodemailer": "^6.4.4",
"jest": "^27.4.7",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tsc-alias": "^1.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
}
}