-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"name": "ngx-todo",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"serve": "ng serve",
"serve:de": "ng serve --configuration=de",
"build:test": "ng build",
"build:prod": "ng build --configuration=production,include-service-worker",
"lint": "ng lint",
"extract-i18n": "ng extract-i18n --output-path src/locale",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:docker": "docker compose --profile cypress up --build --abort-on-container-exit",
"firebase:emulator": "docker compose up",
"docker:serve": "docker compose --profile test up --build"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.5",
"@angular/cdk": "^21.2.3",
"@angular/common": "^21.2.5",
"@angular/compiler": "^21.2.5",
"@angular/core": "^21.2.5",
"@angular/forms": "^21.2.5",
"@angular/platform-browser": "^21.2.5",
"@angular/platform-browser-dynamic": "^21.2.5",
"@angular/router": "^21.2.5",
"@angular/service-worker": "^21.2.5",
"@ngneat/effects": "^2.1.2",
"@ngneat/effects-ng": "^3.1.4",
"@ngneat/elf": "^2.5.1",
"@ngneat/elf-entities": "^5.0.2",
"@ngneat/elf-persist-state": "^1.2.1",
"@ngneat/elf-requests": "^1.9.2",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"flag-icons": "^7.5.0",
"rxjs": "~7.8.2",
"tslib": "^2.3.0",
"zone.js": "~0.16.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.2.3",
"@angular/cli": "^21.2.3",
"@angular/compiler-cli": "^21.2.5",
"@angular/localize": "^21.2.5",
"@cypress/schematic": "^5.0.0",
"@types/jasmine": "~6.0.0",
"angular-eslint": "20.6.0",
"cypress": "^15.14.1",
"eslint": "^9.39.1",
"jasmine-core": "~6.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.2.0",
"typescript": "~5.9.3",
"typescript-eslint": "8.47.0"
}
}