-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "expense-tracker",
"version": "1.0.0",
"description": "Expense tracker to help in tracking incomes and expenses",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [
"expense",
"income",
"tracking"
],
"author": "Netacci",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"express-rate-limit": "^7.4.0",
"express-session": "^1.18.0",
"express-validator": "^7.2.0",
"groq-sdk": "^0.7.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.1",
"morgan": "^1.10.0",
"openai": "^4.61.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"resend": "^4.0.0",
"uuid": "^10.0.0",
"validator": "^13.12.0",
"winston": "^3.14.2"
}
}