-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "pay-rev-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "nodemon app.ts",
"build": "tsc --project ./",
"start": "node build/app.js",
"postinstall": "tsc"
},
"engines": { "node": "14.17.3" },
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.7",
"@types/node": "^17.0.8",
"@types/nodemailer": "^6.4.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@sendgrid/mail": "^7.6.0",
"@types/axios": "^0.14.0",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.9.3",
"@types/sequelize": "^4.28.11",
"axios": "^0.25.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.2",
"otp-generator": "^4.0.0",
"sequelize": "^5.21.3",
"twilio": "^3.73.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}