forked from shayki5/moneyman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "moneyman",
"version": "1.0.0",
"description": "",
"main": "dst/index.ts",
"type": "module",
"engines": {
"node": ">16"
},
"scripts": {
"act": "go run github.com/nektos/act@latest",
"start": "node dst/index.js",
"start:container": "docker compose up",
"postinstall": "patch-package",
"build": "tsc",
"lint": "prettier --check .",
"test": "npm run lint && jest --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-hauser/moneyman.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daniel-hauser/moneyman/issues"
},
"homepage": "https://github.com/daniel-hauser/moneyman#readme",
"dependencies": {
"azure-kusto-data": "^5.2.0",
"azure-kusto-ingest": "^5.2.0",
"date-fns": "^2.30.0",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"google-auth-library": "^8.8.0",
"google-spreadsheet": "^4.0.2",
"israeli-bank-scrapers": "^4.0.2",
"puppeteer": "^21.3.5",
"telegraf": "^4.12.2"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"patch-package": "^8.0.0",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}