-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev src/main.ts",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.10",
"@types/nodemailer": "^6.4.6",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.0",
"@types/validator": "^13.7.10",
"jest": "^29.3.1",
"supertest": "^6.3.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@trycourier/courier": "^4.1.0",
"@types/multer": "^1.4.7",
"accesscontrol": "^2.2.1",
"bcrypt": "^5.1.0",
"cloudmailin": "^0.0.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express-async-handler": "^1.2.0",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.8.0",
"root-require": "^0.3.1",
"sendgrid": "^5.2.3",
"sequelize": "^6.26.0",
"sequelize-typescript": "^2.1.5",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.6.0",
"ts-node-dev": "^2.0.0",
"winston": "^3.8.2"
}
}