-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "@sakowicz/actual-budget-prometheus-exporter",
"version": "1.1.4",
"description": "Prometheus metrics exporter for Actual Budget app",
"main": "app.js",
"scripts": {
"build": "tsc",
"dev-docker": "../node_modules/.bin/nodemon --exec \"npm run lint && ts-node ./app.ts\"",
"dev": "nodemon --exec \"npm run lint && ts-node ./app.ts\"",
"lint": "eslint --fix **/*.ts",
"prod": "node dist/app.js",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "Szymon Sakowicz <info@sakowi.cz>",
"license": "MIT",
"dependencies": {
"@actual-app/api": "^25.2.0",
"@types/jest": "^29.5.14",
"dotenv": "^16.4.7",
"prom-client": "^15.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^22.13.1",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5"
}
}