-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 967 Bytes
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
{
"name": "taskflow-server",
"version": "1.0.0",
"description": "SaaS Task & Team Management Backend",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node dist/server.js"
},
"keywords": [],
"author": "Harish",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"express": "^4.18.2",
"express-rate-limit": "^7.0.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^8.23.0",
"morgan": "^1.10.0",
"nodemailer": "^6.10.1",
"socket.io": "^4.7.0",
"uuid": "^13.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.7",
"@types/node": "^20.0.0",
"nodemon": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}