-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.71 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
104
105
106
107
{
"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": "[email protected]",
"url": "https://rob.gant.ninja/"
},
"contributors": [
{
"name": "J Rob Gant",
"email": "[email protected]",
"url": "https://rob.gant.ninja/"
}
],
"scripts": {
"build": "ng build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"e2e": "ng e2e",
"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": "firebase emulators:exec --ui --import ./fixtures/ --only auth 'ng test'",
"test:export": "firebase emulators:exec --ui --import ./fixtures/ --export-on-exit ./fixtures/ --only auth 'ng test'",
"test:once": "firebase emulators:exec --ui --import ./fixtures/ --only auth 'ng test --no-watch --code-coverage'",
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/animations": "^19.1.4",
"@angular/common": "^19.1.4",
"@angular/compiler": "^19.1.4",
"@angular/core": "^19.1.4",
"@angular/fire": "^19.0.0",
"@angular/forms": "^19.1.4",
"@angular/platform-browser": "^19.1.4",
"@angular/platform-browser-dynamic": "^19.1.4",
"@angular/router": "^19.1.4",
"@angular/service-worker": "^19.1.4",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"check-password-strength": "^3.0.0",
"modern-normalize": "^3.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.6",
"@angular/cli": "^19.1.6",
"@angular/compiler-cli": "^19.1.4",
"@angular/localize": "^19.1.4",
"@smarttools/eslint-plugin-rxjs": "^1.0.17",
"@stylistic/eslint-plugin": "^3.0.1",
"@stylistic/stylelint-config": "^2.0.0",
"@types/jasmine": "~5.1.0",
"angular-eslint": "19.0.2",
"cypress": "^14.0.2",
"eslint": "^9.19.0",
"eslint_d": "^14.3.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-perfectionist": "^4.8.0",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-unicorn": "^56.0.1",
"jasmine-core": "~5.5.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": "^7.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-declaration-strict-value": "^1.10.7",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-no-indistinguishable-colors": "^2.3.0",
"stylelint-no-unsupported-browser-features": "^8.0.4",
"stylelint-plugin-defensive-css": "^1.0.4",
"stylelint-plugin-logical-css": "^1.2.1",
"stylelint-use-nesting": "^6.0.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.23.0"
},
"engines": {
"node": "v20.18.1",
"npm": "11.0.0"
}
}