-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "todo-app",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"test": "jest --runInBand",
"dev:ts": "tsc -w",
"dev:js": "nodemon build/server.js",
"dev": "concurrently npm:dev:*",
"build": "tsc",
"start": "node build/server.js"
},
"dependencies": {
"@types/nodemailer": "^6.4.15",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"mongoose": "^7.2.0",
"redis": "^4.6.15",
"winston": "^3.16.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.6",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.0.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.2.5",
"typescript": "^5.5.3"
}
}