-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.63 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
{
"name": "finance-tracker-api",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/nmdra/Finance-Tracker-API#readme",
"bugs": {
"url": "https://github.com/nmdra/Finance-Tracker-API/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nmdra/Finance-Tracker-API.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "server.js",
"scripts": {
"dev": "nodemon -L --verbose server.js",
"start": "node server.js",
"test": "npx mocha --exit 'test/**/*.test.js'"
},
"dependencies": {
"axios": "^1.8.2",
"axios-retry": "^4.5.0",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"croner": "^9.0.0",
"dayjs": "^1.11.13",
"express": "^4.21.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.5.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.10.1",
"nodemailer": "^6.10.0",
"pdfkit": "^0.16.0",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"pino-pretty": "^13.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/express": "^4.17.21",
"@types/node": "^20.14.6",
"chai": "^5.2.0",
"eslint": "^9.5.0",
"globals": "^15.6.0",
"lefthook": "^1.11.2",
"mocha": "^11.1.0",
"nock": "^14.0.1",
"prettier": "3.5.2",
"sinon": "^7.5.0"
}
}