-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.24 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.24 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
{
"name": "@amadeus-it-group/ngrx-devtool",
"version": "0.1.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AmadeusITGroup/ngrx-devtool"
},
"scripts": {
"ng": "ng",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "npx tsc index.ts --outdir dist && chmod +x dist/index.js && ng build ngrx-devtool && ng build ngrx-devtool-ui && node ./setup-npm-package.js",
"lint": "ng lint",
"lint:fix": "ng lint --fix"
},
"exports": {
".": "./dist/ngrx-devtool/fesm2022/ngrx-devtool.mjs"
},
"bin": {
"ngrx-devtool": "./dist/index.js"
},
"private": true,
"dependencies": {
"@alenaksu/json-viewer": "^2.1.2",
"@angular/cdk": "^21.1.5",
"@angular/common": "^21.1.5",
"@angular/compiler": "^21.1.5",
"@angular/core": "^21.1.5",
"@angular/forms": "^21.1.5",
"@angular/material": "^21.1.5",
"@angular/platform-browser": "^21.1.5",
"@angular/platform-browser-dynamic": "^21.1.5",
"@angular/platform-server": "^21.1.5",
"@angular/router": "^21.1.5",
"@angular/ssr": "^21.1.5",
"@ngrx/effects": "^21.0.1",
"@ngrx/store": "^21.0.1",
"chalk": "^4.1.2",
"express": "^4.22.1",
"ngrx-store": "^0.0.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"ws": "^8.18.2",
"zone.js": "~0.16.1"
},
"overrides": {
"rollup": ">=4.59.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.1.4",
"@angular-devkit/core": "^21.1.4",
"@angular/cli": "^21.1.4",
"@angular/compiler-cli": "^21.1.5",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@types/express": "^4.17.17",
"@types/jest": "^30.0.0",
"@types/node": "^18.18.0",
"angular-eslint": "21.0.1",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"jasmine-core": "~5.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-preset-angular": "^16.0.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",
"ng-packagr": "^21.1.0",
"typescript": "~5.9.3",
"typescript-eslint": "8.46.4"
}
}