-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.91 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
{
"name": "skylog",
"version": "1.0.0",
"description": "A modern flight tracking web application built with Angular and Firebase",
"keywords": [
"angular",
"firebase",
"flight-tracking",
"typescript",
"tailwindcss"
],
"author": "SkyLog Team",
"scripts": {
"ng": "ng",
"start": "ng serve --port 3000 --host localhost",
"start:prod": "ng serve --configuration production --port 80 --host localhost",
"build": "ng build",
"build:prod": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr": "node dist/skylog/server/server.mjs",
"deploy": "cross-env NODE_NO_WARNINGS=1 firebase deploy",
"deploy:hosting": "cross-env NODE_NO_WARNINGS=1 firebase deploy --only hosting",
"deploy:firestore": "cross-env NODE_NO_WARNINGS=1 firebase deploy --only firestore"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.2.4",
"@angular/common": "^20.2.4",
"@angular/compiler": "^20.2.4",
"@angular/core": "^20.2.4",
"@angular/fire": "^20.0.1",
"@angular/forms": "^20.2.4",
"@angular/platform-browser": "^20.2.4",
"@angular/platform-browser-dynamic": "^20.2.4",
"@angular/router": "^20.2.4",
"date-fns": "^4.1.0",
"firebase": "^10.7.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.2.2",
"@angular/cli": "^20.2.2",
"@angular/compiler-cli": "^20.2.4",
"@types/jasmine": "~5.1.0",
"@types/node": "^24.3.1",
"autoprefixer": "^10.4.0",
"cross-env": "^10.0.0",
"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",
"postcss": "^8.4.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.9.2"
}
}