-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 971 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
{
"name": "firefly-teller-connector",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"connect": "node app/connect/server.js",
"connect:dev": "nodemon app/connect/server.js",
"transactions:download": "node app/scripts/transactions.js --write",
"transactions:download:local": "node app/scripts/transactions.js --write --use-local-data",
"transactions:sync": "node app/scripts/transactions --sync",
"transactions:sync:local": "node app/scripts/transactions --sync --use-local-data"
},
"keywords": [],
"author": "breakthestatic",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"cron": "^3.1.6",
"csv": "^6.3.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"simple-json-db": "^2.0.0",
"socks-proxy-agent": "^8.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.9.2",
"eslint": "^8.54.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0"
}
}