-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 893 Bytes
/
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
{
"name": "expense-tracker",
"version": "1.0.0",
"description": "expense tracker for tracking expenses",
"main": "app.js",
"node": "18.15.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"start": "node app.js",
"lint:fix": "eslint . --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1353.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.1.5",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.1",
"morgan": "^1.10.0",
"pdfmake": "^0.2.7",
"razorpay": "^2.8.6",
"sib-api-v3-sdk": "^8.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^2.0.21"
}
}