-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"dependencies": {
"@types/nodemailer": "^6.4.4",
"bcrypt": "^5.0.1",
"chalk": "^4.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-formidable": "^1.2.0",
"i18n": "^0.15.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.2",
"multer": "^1.4.2",
"nodemailer": "^6.7.7",
"sharp": "^0.30.7",
"swagger-ui-express": "^4.5.0"
},
"scripts": {
"start": "node ./build/index.js",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"test": "jest --config ./src/jest.config.ts --watch-All"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/express-formidable": "^1.2.0",
"@types/i18n": "^0.13.4",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.6",
"@types/sharp": "^0.30.4",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"jest": "^28.1.3",
"multer-gridfs-storage": "^5.0.2",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
}
}