-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.45 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "budgetbuddy",
"version": "1.0.0",
"description": "Finance tracker application that incorporates multifactor authentication with FIDO2, categorizes transactions in expense, savings, investment, or earning, and allows users to make investments",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rishitashaw/BudgetBuddy.git"
},
"keywords": [
"FIDO2",
"Finance",
"Tracker",
"Budget"
],
"author": "Rishita Shaw",
"license": "ISC",
"bugs": {
"url": "https://github.com/rishitashaw/BudgetBuddy/issues"
},
"homepage": "https://github.com/rishitashaw/BudgetBuddy#readme",
"dependencies": {
"@passwordless-id/webauthn": "^1.2.4",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"fido2-lib": "^3.4.0",
"fido2-server": "^0.5.0",
"helmet": "^7.0.0",
"mongoose": "^7.2.2",
"nodemailer": "^6.9.3",
"nodemon": "^2.0.22",
"openai": "^3.2.1",
"webauthn": "^0.2.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/node": "^7.22.1",
"@babel/preset-env": "^7.22.4"
}
}