-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "deliverit-back",
"version": "0.1.0",
"description": "delivery app",
"main": "server.ts",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/server.ts",
"test": "NODE_ENV=test jest",
"start": "node dist/src/server.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julianbesteiro/deliverit-back.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/julianbesteiro/deliverit-back/issues"
},
"homepage": "https://github.com/julianbesteiro/deliverit-back#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.5",
"@types/node": "^20.4.9",
"@types/nodemailer": "^6.4.9",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.417.0",
"@types/aws-sdk": "^2.7.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"bulma": "^0.9.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cron": "^2.4.3",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"googleapis": "^126.0.1",
"helmet": "^7.0.0",
"http-status": "^1.6.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.7.0",
"mongoose": "^7.4.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.5",
"qs": "^6.10.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"winston": "^3.10.0"
}
}