-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.3 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
{
"name": "personal-web",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4201",
"start:dev": "ng serve --configuration dev --port 4201",
"start:pro": "ng serve --configuration pro --port 4201",
"build": "ng build",
"build:dev": "ng build --configuration dev",
"build:pro": "ng build --configuration pro",
"watch": "ng build --watch --configuration dev",
"test": "ng test --watch=false --browsers=ChromeHeadless",
"test:watch": "ng test",
"lint": "eslint .",
"prepare": "husky install",
"dev:ssr": "ng run personal-web:serve-ssr --port 4201",
"serve:ssr": "node dist/personal-web/server/main.js --port 4201",
"build:ssr": "ng build && ng run personal-web:server",
"prerender": "ng run personal-web:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.0",
"@angular/common": "^17.0.0",
"@angular/compiler": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/forms": "^17.0.0",
"@angular/platform-browser": "^17.0.0",
"@angular/platform-browser-dynamic": "^17.0.0",
"@angular/platform-server": "^17.0.0",
"@angular/router": "^17.0.0",
"@angular/ssr": "^17.0.3",
"@fortawesome/angular-fontawesome": "^0.14.0",
"@fortawesome/fontawesome-svg-core": "^6.5.0",
"@fortawesome/free-brands-svg-icons": "^6.5.0",
"@fortawesome/free-regular-svg-icons": "^6.5.0",
"@fortawesome/free-solid-svg-icons": "^6.5.0",
"@ngrx/component-store": "^17.0.1",
"@ngrx/effects": "^17.0.1",
"@ngrx/entity": "^17.0.1",
"@ngrx/eslint-plugin": "^17.0.1",
"@ngrx/operators": "^17.0.1",
"@ngrx/router-store": "^17.0.1",
"@ngrx/signals": "^17.0.1",
"@ngrx/store": "^17.0.1",
"@ngrx/store-devtools": "^17.0.1",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@supabase/supabase-js": "^2.39.0",
"chart.js": "^4.4.0",
"express": "^4.18.2",
"font-awesome": "^4.7.0",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primeng": "^17.0.0-beta.1",
"rxjs": "~7.8.0",
"swiper": "^8.4.7",
"tslib": "^2.3.0",
"uuid": "^9.0.1",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.3",
"@angular-eslint/builder": "17.1.1",
"@angular-eslint/eslint-plugin": "17.1.1",
"@angular-eslint/eslint-plugin-template": "17.1.1",
"@angular-eslint/schematics": "17.1.1",
"@angular-eslint/template-parser": "17.1.1",
"@angular/cli": "^17.0.3",
"@angular/compiler-cli": "^17.0.0",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@faker-js/faker": "^8.4.0",
"@ngrx/schematics": "^17.0.1",
"@types/express": "^4.17.17",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-spec-reporter": "^0.0.36",
"lint-staged": "^15.2.0",
"ngx-translate-testing": "^7.0.0",
"typescript": "~5.2.2"
}
}