-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.65 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.65 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "brainfry",
"version": "0.0.0",
"private": true,
"description": "Angular application for creating and presenting pub quizzes.",
"homepage": "https://brainfry-app.web.app/",
"bugs": {
"url": "https://github.com/rgant/brainfry/issues/new"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rgant/brainfry.git"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "J Rob Gant",
"email": "rob@learnlux.com",
"url": "https://rob.gant.ninja/"
},
"contributors": [
{
"name": "J Rob Gant",
"email": "rob@learnlux.com",
"url": "https://rob.gant.ninja/"
}
],
"scripts": {
"build": "ng build",
"postbuild": "npm run compodoc:build",
"clean-coverage": "./scripts/check-coverages-changes.sh",
"compodoc:build": "compodoc",
"compodoc:build-and-serve": "compodoc --serve --watch",
"compodoc:serve": "compodoc --serve",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"predeploy": "npm run build",
"deploy": "firebase deploy --only hosting",
"e2e": "firebase emulators:exec --ui --import ./fixtures/firebase-emulator/ --only auth,firestore,storage 'ng e2e'",
"emulator:exec": "firebase emulators:exec --ui --import ./fixtures/firebase-emulator/ --only auth,firestore,storage",
"i18n": "ng extract-i18n --out-file=messages.en.xlf --output-path=src/locale/",
"lint": "ng lint",
"ng": "ng",
"start": "ng serve",
"stylelint": "stylelint --quiet-deprecation-warnings src/",
"test": "npm run emulator:exec 'ng test'",
"test:export": "firebase emulators:start --import ./fixtures/firebase-emulator/ --export-on-exit ./fixtures/firebase-emulator/ --only auth,firestore,storage",
"test:once": "npm run emulator:exec 'ng test --no-watch --code-coverage'; r=$?; npm run clean-coverage; exit $r",
"watch": "ng build --watch --configuration development"
},
"overrides": {
"comment-firebase": "rxfire has a peer dependency on firebase <12, but @angular/fire needs firebase >=12. This forces a single version.",
"firebase": "12.7.0"
},
"dependencies": {
"@angular/animations": "^21.0.8",
"@angular/common": "^21.0.8",
"@angular/compiler": "^21.0.8",
"@angular/core": "^21.0.8",
"@angular/fire": "^21.0.0-rc.0",
"@angular/forms": "^21.0.8",
"@angular/platform-browser": "^21.0.8",
"@angular/platform-browser-dynamic": "^21.0.8",
"@angular/router": "^21.0.8",
"@angular/service-worker": "^21.0.8",
"@fortawesome/angular-fontawesome": "^4.0.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"check-password-strength": "^3.0.0",
"modern-normalize": "^3.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "^0.16.0"
},
"devDependencies": {
"@angular/build": "^21.0.5",
"@angular/cli": "^21.0.5",
"@angular/compiler-cli": "^21.0.8",
"@angular/localize": "^21.0.8",
"@compodoc/compodoc": "^1.1.32",
"@eslint/js": "^9.21.0",
"@firebase/rules-unit-testing": "^5.0.0",
"@smarttools/eslint-plugin-rxjs": "^1.0.22",
"@stylistic/eslint-plugin": "^5.7.0",
"@stylistic/stylelint-config": "^3.0.1",
"@types/jasmine": "~5.1.0",
"angular-eslint": "^21.1.0",
"cypress": "^15.8.2",
"eslint": "^9.39.2",
"eslint_d": "^14.3.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-perfectionist": "^5.3.1",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-tsdoc": "^0.5.0",
"eslint-plugin-unicorn": "^62.0.0",
"firebase-tools": "^14.27.0",
"jasmine-core": "^5.13.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",
"stylelint-config-clean-order": "^8.0.0",
"stylelint-config-standard-scss": "^16.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-declaration-strict-value": "^1.10.11",
"stylelint-high-performance-animation": "^1.11.0",
"stylelint-no-indistinguishable-colors": "^2.3.1",
"stylelint-no-unsupported-browser-features": "^8.0.5",
"stylelint-plugin-defensive-css": "^1.0.4",
"stylelint-plugin-logical-css": "^1.2.2",
"stylelint-selector-tag-no-without-class": "^3.0.1",
"stylelint-use-nesting": "^6.0.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.52.0"
},
"packageManager": "npm@11.7.0",
"engines": {
"node": "v22.21.1",
"npm": "11.7.0"
}
}