-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "accountant",
"version": "0.2.0",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build && tsc -p tsconfig.server.json",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:unit": "tsx --test $(find src -name '*.test.ts')",
"dev": "ng serve --proxy-config proxy.conf.json --port 6400",
"dev-node": "tsx watch src/server -- --no-open"
},
"dependencies": {
"@angular-devkit/core": "^19.1.1",
"@angular/animations": "^19.1.1",
"@angular/cdk": "^19.1.0",
"@angular/common": "^19.1.1",
"@angular/compiler": "^19.1.1",
"@angular/core": "^19.1.1",
"@angular/forms": "^19.1.1",
"@angular/platform-browser": "^19.1.1",
"@angular/platform-browser-dynamic": "^19.1.1",
"@angular/router": "^19.1.1",
"@cds/core": "^6.11.0",
"@clr/angular": "^17.10.0",
"@clr/ui": "^17.10.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"archiver": "^8.0.0",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^12.10.0",
"chart.js": "^4.5.1",
"compression": "^1.8.1",
"express": "^4.21.2",
"express-session": "^1.19.0",
"flexsearch": "^0.7.43",
"fluentreports": "^1.4.4",
"handlebars": "^4.7.9",
"knex": "^3.2.10",
"ng2-charts": "^8.0.0",
"ng2-pdf-viewer": "^10.4.0",
"ngx-toastr": "^19.0.0",
"nodemailer": "^8.0.10",
"remult": "^2.7.28",
"rxjs": "~7.8.2",
"session-file-store": "^1.5.0",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.1",
"@angular/cli": "^19.1.1",
"@angular/compiler-cli": "^19.1.1",
"@types/archiver": "^8.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.1",
"@types/flexsearch": "^0.7.6",
"@types/jasmine": "~5.1.4",
"@types/nodemailer": "^8.0.0",
"@types/session-file-store": "^1.2.5",
"jasmine-core": "~5.1.2",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"nodemon": "^3.1.14",
"tsx": "^4.22.4",
"typescript": "~5.7.3"
}
}