-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.98 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
{
"name": "ngrx-lite",
"version": "19.0.0",
"license": "MIT",
"workspaces": [
"apps/doc-app"
],
"scripts": {
"affected:build": "nx affected --target=build",
"affected:lint": "nx affected:lint",
"affected:test": "nx affected:test",
"affected:e2e": "nx affected --target=e2e",
"build": "nx build",
"build:docs": "nx run doc-app:build && nx run sample-app:build:production --baseHref=/ngrx-lite/sample-app/ --outputPath=./dist/apps/doc-app/sample-app",
"build:release": "nx run store:build:production",
"format:check": "nx format:check",
"ng": "nx",
"start": "nx run sample-app:serve",
"test": "nx test"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/gernsdorfer/ngrx-lite.git"
},
"dependencies": {
"@angular/animations": "19.0.3",
"@angular/cdk": "19.0.2",
"@angular/common": "19.0.3",
"@angular/compiler": "19.0.3",
"@angular/core": "19.0.3",
"@angular/forms": "19.0.3",
"@angular/material": "19.0.2",
"@angular/platform-browser": "19.0.3",
"@angular/platform-browser-dynamic": "19.0.3",
"@angular/router": "19.0.3",
"@ngrx/component-store": "18.1.1",
"@ngrx/effects": "18.1.1",
"@ngrx/entity": "18.1.1",
"@ngrx/operators": "18.1.1",
"@ngrx/store": "18.1.1",
"@ngrx/store-devtools": "18.1.1",
"@nx/angular": "20.2.1",
"rxjs": "~7.8.1",
"tslib": "^2.6.3",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.0.4",
"@angular-devkit/core": "19.0.4",
"@angular-devkit/schematics": "19.0.4",
"@angular-eslint/eslint-plugin": "19.0.1",
"@angular-eslint/eslint-plugin-template": "19.0.1",
"@angular-eslint/template-parser": "19.0.1",
"@angular/cli": "~19.0.0",
"@angular/compiler-cli": "19.0.3",
"@angular/language-service": "19.0.3",
"@eslint/eslintrc": "^2.1.1",
"@eslint/js": "~8.57.0",
"@nx/cypress": "20.2.1",
"@nx/eslint": "20.2.1",
"@nx/eslint-plugin": "20.2.1",
"@nx/workspace": "20.2.1",
"@schematics/angular": "19.0.4",
"@types/jasmine": "5.1.5",
"@types/node": "20.14.10",
"@typescript-eslint/utils": "7.18.0",
"autoprefixer": "^10.4.20",
"cypress": "13.16.1",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "3.3.0",
"jasmine-core": "5.5.0",
"jasmine-marbles": "^0.9.2",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "19.0.1",
"nx": "20.2.1",
"postcss": "^8.4.32",
"postcss-import": "16.1.0",
"postcss-preset-env": "~9.5.14",
"postcss-url": "10.1.3",
"prettier": "3.4.2",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-sort-json": "^4.0.0",
"typescript": "5.6.3",
"typescript-eslint": "^8.13.0"
}
}