-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.65 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
{
"name": "issuetracker",
"version": "2.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve:lan": "ng serve --host 0.0.0.0",
"serve:open": "ng serve --open --port 4200",
"build": "ng build",
"build:prod": "ng build --configuration production",
"test": "ng test",
"test:github": "ng test --browsers ChromeHeadless --watch false",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"test:coverage": "ng test --no-watch --code-coverage",
"test:codecov": "ng test --browsers ChromeHeadless --no-watch --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"private": true,
"dependencies": {
"@angular/animations": "~15.2.1",
"@angular/cdk": "^15.2.1",
"@angular/common": "~15.2.1",
"@angular/compiler": "~15.2.1",
"@angular/core": "~15.2.1",
"@angular/fire": "^7.5.0",
"@angular/forms": "~15.2.1",
"@angular/platform-browser": "~15.2.1",
"@angular/platform-browser-dynamic": "~15.2.1",
"@angular/router": "~15.2.1",
"@angular/service-worker": "~15.2.1",
"@fortawesome/angular-fontawesome": "^0.12.1",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@ngrx/effects": "^15.4.0",
"@ngrx/store": "^15.4.0",
"@ngrx/store-devtools": "^15.4.0",
"firebase": "^9.19.1",
"ngrx-store-localstorage": "^15.0.0",
"primeflex": "^3.3.0",
"primeicons": "^6.0.1",
"primeng": "^15.3.0",
"quill": "^1.3.7",
"roboto-fontface": "^0.10.0",
"rxjs": "~7.8.0",
"tslib": "^2.5.0",
"uuid": "^9.0.0",
"zone.js": "^0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.2.4",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "~15.2.4",
"@angular/compiler-cli": "~15.2.1",
"@cypress/schematic": "^2.5.0",
"@types/jasmine": "~4.3.1",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "^8.37.0",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"cypress": "latest"
}
}