-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.94 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "gc-frontend",
"version": "2.0.0",
"description": "Gestione Casa",
"author": "Simone De Gennaro",
"repository": {
"type": "git",
"url": "git+https://github.com/deggesim/gc-frontend.git"
},
"bugs": {
"url": "https://github.com/deggesim/gc-frontend/issues"
},
"homepage": "https://github.com/deggesim/gc-frontend#readme",
"engines": {
"node": "22.x",
"npm": "10.x"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"http-server": "http-server -p 8080 -c-1 dist/gc-frontend",
"sw": "run-p watch http-server",
"format:fix": "pretty-quick --staged",
"precommit": "run-s format:fix lint",
"format:check": "prettier --config ./.prettierrc --list-different \"src/{app,environments,assets}/**/*{.json,.css,.scss,.html}\"",
"prettier": "prettier --config ./.prettierrc \"src/{app,environments,assets,styles}/**/*{.json,.css,.scss,.html,.ts}\" --write"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.2.1",
"@angular/cdk": "^19.2.2",
"@angular/common": "^19.2.1",
"@angular/compiler": "^19.2.1",
"@angular/core": "^19.2.1",
"@angular/forms": "^19.2.1",
"@angular/platform-browser": "^19.2.1",
"@angular/platform-browser-dynamic": "^19.2.1",
"@angular/router": "^19.2.1",
"@angular/service-worker": "^19.2.1",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@ng-select/ng-select": "^14.2.2",
"@swimlane/ngx-charts": "^22.0.0-alpha.0",
"bootstrap": "^5.3.3",
"bootswatch": "^5.3.3",
"jwt-decode": "^4.0.0",
"koa": "^2.16.0",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"lodash-es": "^4.17.21",
"luxon": "^3.5.0",
"ngx-bootstrap": "^19.0.2",
"ngx-currency": "^19.0.0",
"ngx-device-detector": "^9.0.0",
"ngx-toastr": "^19.0.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.1",
"@angular/cli": "^19.2.1",
"@angular/compiler-cli": "^19.2.1",
"@types/d3": "^7.4.3",
"@types/jasmine": "~5.1.7",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.10",
"husky": "^9.1.7",
"jasmine-core": "~5.6.0",
"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",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
"typescript": "~5.8.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint --fix"
],
"*{.json,.css,.scss,.html,.js}": [
"prettier --write"
]
}
}