-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "actual-dashboard",
"license": "MIT",
"description": "An unofficial basic dashboard to show information about some Actual Budget accounts",
"scripts": {
"prepare": "husky",
"actual-server": "docker compose -f docker-compose.dev.yml up"
},
"lint-staged": {
"*": [
"eslint --max-warnings=0 --no-warn-ignored",
"prettier --ignore-unknown --write"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.0.6",
"@angular-devkit/core": "~19.0.6",
"@angular-devkit/schematics": "~19.0.6",
"@angular/cli": "~19.0.0",
"@angular/compiler-cli": "~19.0.5",
"@angular/language-service": "~19.0.5",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@m-thalmann/eslint-config-angular": "^0.3.3",
"@m-thalmann/eslint-config-base": "^0.2.0",
"@m-thalmann/eslint-config-rxjs": "^0.3.3",
"@m-thalmann/eslint-config-typescript": "^0.2.1",
"@m-thalmann/prettier-config": "^1.0.0",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/angular": "~20.3.0",
"@nx/eslint": "~20.3.0",
"@nx/eslint-plugin": "~20.3.0",
"@nx/jest": "~20.3.0",
"@nx/js": "~20.3.0",
"@nx/nest": "~20.3.0",
"@nx/node": "~20.3.0",
"@nx/web": "~20.3.0",
"@nx/webpack": "~20.3.0",
"@schematics/angular": "~19.0.6",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "~29.5.14",
"@types/node": "^22.7.5",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"jest-environment-node": "^29.4.1",
"jest-preset-angular": "~14.4.2",
"lint-staged": "^15.2.9",
"nx": "~20.3.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"typescript": "~5.6.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@actual-app/api": "^25.2.1",
"@angular/animations": "~19.0.5",
"@angular/common": "~19.0.5",
"@angular/compiler": "~19.0.5",
"@angular/core": "~19.0.5",
"@angular/forms": "~19.0.5",
"@angular/platform-browser": "~19.0.5",
"@angular/platform-browser-dynamic": "~19.0.5",
"@angular/router": "~19.0.5",
"@fortawesome/fontawesome-free": "^6.6.0",
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.0.2",
"@nestjs/jwt": "^10.2.0",
"@nestjs/platform-express": "^10.0.2",
"@nestjs/serve-static": "^4.0.2",
"@nestjs/swagger": "^7.4.2",
"axios": "^1.6.0",
"chart.js": "^4.4.7",
"express": "^4.21.1",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.8.0",
"tslib": "^2.7.0",
"zone.js": "~0.15.0"
}
}