-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.61 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
{
"name": "codetango",
"version": "1.0.0",
"author": "Matt, Alex, Ryan, Armin, Justin, Bob, Tyler, Brik, JJ",
"homepage": "https://codetango.web.app/",
"scripts": {
"start": "ng serve",
"start:emulators": "firebase emulators:exec --only auth,firestore,functions --project demo-codetango --ui 'ng serve'",
"emulators": "firebase emulators:start --only auth,firestore,functions --project demo-codetango",
"start:prod-data": "echo '\\033[31m⚠️ ng serve against PRODUCTION Firebase data\\033[0m' && ng serve --configuration=prod-data",
"build": "ng build",
"build:prod": "ng build --configuration=production",
"deploy:dev": "npm run build && firebase deploy -P dev",
"deploy-functions:dev": "firebase deploy --only functions -P dev",
"deploy-hosting:dev": "npm run build && firebase deploy --only hosting -P dev",
"deploy:prod": "npm run build:prod && firebase deploy -P prod",
"deploy-functions:prod": "firebase deploy --only functions -P prod",
"deploy-hosting:prod": "npm run build:prod && firebase deploy --only hosting -P prod",
"indexes": "firebase firestore:indexes > firestore.indexes.json -P prod",
"lint": "eslint \"src/**/*.{ts,html}\" \"functions/src/**/*.ts\" \"types.ts\""
},
"private": true,
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@angular/common": "~20.3.0",
"@angular/core": "~20.3.0",
"@angular/fire": "^20.0.1",
"@angular/forms": "~20.3.0",
"@angular/platform-browser": "~20.3.0",
"@angular/platform-browser-dynamic": "~20.3.0",
"@angular/router": "~20.3.0",
"@angular/service-worker": "~20.3.0",
"@ionic/angular": "^8.4.0",
"chart.js": "^4.4.0",
"firebase": "^11.0.0",
"luxon": "^3.5.0",
"rxjs": "~7.8.0",
"tslib": "^2.8.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~20.3.0",
"@angular/cli": "~20.3.0",
"@angular/compiler": "~20.3.0",
"@angular/compiler-cli": "~20.3.0",
"@angular/language-service": "~20.3.0",
"@ionic/angular-toolkit": "^12.1.0",
"@types/node": "^20.12.0",
"firebase-tools": "~15.13.0",
"ts-node": "~10.9.0",
"typescript": "~5.9.0",
"eslint": "^9.39.0",
"@eslint/js": "^9.39.0",
"typescript-eslint": "^8.59.0",
"angular-eslint": "~20.7.0"
},
"description": "The best way to play codenames",
"overrides": {
"path-to-regexp": "6.3.0",
"express@4": {
"path-to-regexp": "0.1.13"
},
"babel-loader": "9.2.1",
"debug": "4.4.3",
"flat-cache": "6.1.21",
"pac-resolver": "9.0.1",
"jsesc": "2.5.2",
"spdy": "4.0.1",
"fresh": "0.5.2"
}
}