-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.05 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
101
102
103
{
"name": "fbm-frontend",
"version": "3.0.0",
"description": "Fantabasket Manager",
"author": "Simone De Gennaro",
"repository": {
"type": "git",
"url": "git+https://github.com/deggesim/fbm-frontend.git"
},
"bugs": {
"url": "https://github.com/deggesim/fbm-frontend/issues"
},
"homepage": "https://github.com/deggesim/fbm-frontend#readme",
"engines": {
"node": "20.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/fbm-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",
"package": "npm i --package-lock-only"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.2.6",
"@angular/cdk": "^14.2.5",
"@angular/common": "^14.2.6",
"@angular/compiler": "^14.2.6",
"@angular/core": "^14.2.6",
"@angular/forms": "^14.2.6",
"@angular/platform-browser": "^14.2.6",
"@angular/platform-browser-dynamic": "^14.2.6",
"@angular/router": "^14.2.6",
"@angular/service-worker": "^14.2.6",
"@fortawesome/angular-fontawesome": "^0.11.1",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@ng-select/ng-select": "^9.0.2",
"@ngrx/effects": "^14.3.2",
"@ngrx/router-store": "^14.3.2",
"@ngrx/store": "^14.3.2",
"@ngrx/store-devtools": "^14.3.2",
"bootstrap": "^5.2.2",
"bootswatch": "^5.2.2",
"jwt-decode": "^3.1.2",
"koa": "^2.13.4",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"lodash-es": "^4.17.21",
"luxon": "^3.0.4",
"ngx-bootstrap": "^9.0.0",
"ngx-toastr": "^15.2.0",
"popper.js": "^1.16.1",
"rxjs": "^7.5.7",
"tslib": "^2.4.0",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.6",
"@angular/cli": "^14.2.6",
"@angular/compiler-cli": "^14.2.6",
"@types/jasmine": "^3.10.3",
"@types/jwt-decode": "^3.1.0",
"@types/lodash-es": "^4.17.5",
"@types/luxon": "^3.0.1",
"@types/node": "^17.0.10",
"husky": "^7.0.4",
"jasmine-core": "~3.10.1",
"karma": "^6.3.11",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"lint-staged": "^12.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"typescript": "~4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint --fix"
],
"*{.json,.css,.scss,.html,.js}": [
"prettier --write"
]
}
}