-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.74 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
{
"name": "finman",
"version": "2.0.0",
"description": "AI-powered personal finance manager with multi-provider LLM support",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"android:sync": "npx cap sync android",
"android:open": "npx cap open android",
"android:build": "npx cap sync android && cd android && ./gradlew assembleDebug",
"android:release": "npx cap sync android && cd android && ./gradlew assembleRelease",
"ios:sync": "npx cap sync ios",
"ios:open": "npx cap open ios",
"cap:sync": "npx cap sync"
},
"keywords": [
"finance",
"budget",
"expenses",
"bank-api"
],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@capacitor/android": "^8.0.2",
"@capacitor/cli": "^8.0.2",
"@capacitor/core": "^8.0.2",
"@capacitor/ios": "^8.0.2",
"@google/generative-ai": "^0.24.1",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dompurify": "^3.3.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"express-session": "^1.17.3",
"express-validator": "^7.3.1",
"helmet": "^8.1.0",
"jsdom": "^29.0.1",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.22",
"openai": "^6.33.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"sqlite3": "^5.1.6"
}
}