-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.02 KB
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
{
"name": "task-dashboard-backend",
"version": "1.0.0",
"description": "Production-ready Node.js backend for Task Dashboard with MongoDB integration",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"seed": "node scripts/seed-database.js",
"migrate": "node scripts/migrate-database.js",
"health": "curl http://localhost:3001/api/health",
"backup": "mongodump --uri=\"$MONGODB_URI\" --out=./backup",
"restore": "mongorestore --uri=\"$MONGODB_URI\" ./backup"
},
"keywords": [
"task-management",
"api",
"nodejs",
"express",
"mongodb",
"file-upload",
"pwa-backend"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@sentry/node": "^9.35.0",
"@sentry/profiling-node": "^9.35.0",
"axios": "^1.10.0",
"bcryptjs": "^3.0.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.5.1",
"express-validator": "^7.2.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"morgan": "^1.10.0",
"multer": "^2.0.1",
"nodemailer": "^7.0.4",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"resend": "^4.6.0",
"stripe": "^18.3.0"
},
"devDependencies": {
"eslint": "^8.47.0",
"jest": "^29.6.2",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/task-dashboard-backend.git"
},
"bugs": {
"url": "https://github.com/yourusername/task-dashboard-backend/issues"
},
"homepage": "https://github.com/yourusername/task-dashboard-backend#readme"
}