forked from seriouslag/actual-auto-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.79 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
56
57
58
59
60
61
62
{
"name": "@seriouslag/actual-auto-sync",
"version": "0.0.1",
"description": "A background service that automatically syncs your Actual Budget accounts on a scheduled basis.",
"keywords": [
"actual",
"auto",
"bank",
"budget",
"docker",
"sync"
],
"license": "MIT",
"type": "module",
"main": "src/index.ts",
"scripts": {
"start": "node --loader ts-node/esm src/index.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --config vitest.config.e2e.mts",
"test:e2e:docker": "docker compose -f docker-compose.e2e.yml up --build --abort-on-container-exit --exit-code-from e2e-tests",
"build": "tsc",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"check": "pnpm lint && pnpm format:check && pnpm build",
"prepare": "node -e \"const fs=require('node:fs'); const cp=require('node:child_process'); if (fs.existsSync('.git')) cp.execSync('lefthook install', { stdio: 'inherit' });\""
},
"dependencies": {
"@actual-app/api": "^26.3.0",
"@actual-app/crdt": "^2.1.0",
"@t3-oss/env-core": "^0.13.10",
"better-sqlite3": "^12.6.2",
"cron": "^4.4.0",
"cronstrue": "^3.12.0",
"dotenv": "^17.3.1",
"luxon": "^3.7.2",
"pino": "^10.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/luxon": "^3.7.1",
"@types/node": "^25.2.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint-plugin-unused-imports": "^4.4.1",
"lefthook": "^2.1.1",
"oxfmt": "^0.33.0",
"oxlint": "^1.48.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.21.0",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"lefthook"
]
}
}