-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 925 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 925 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
{
"name": "subscription-tracker-backend",
"version": "1.0.0",
"description": "Minimal backend for subscription tracking",
"main": "app.js",
"type": "module",
"author": "sumant3086",
"repository": {
"type": "git",
"url": "https://github.com/sumant3086/subscription-tracker-backend.git"
},
"homepage": "https://github.com/sumant3086/subscription-tracker-backend#readme",
"bugs": {
"url": "https://github.com/sumant3086/subscription-tracker-backend/issues"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"jsonwebtoken": "^9.0.3",
"mongodb": "^7.0.0",
"mongoose": "^9.1.1",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.12"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}