-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "ngxs-synchronizers",
"version": "3.0.0",
"description": "Easily keep your app's local state synchronized with your backend, databases and more! ngxs-synchronizers simplifies synchronizing your NGXS-based application state with external data sources.",
"author": "Mychal Thompson <[email protected]>",
"license": "MIT",
"private": false,
"repository": "https://github.com/lVlyke/ngxs-synchronizers",
"keywords": [
"ngxs",
"synchronizers",
"synchronize",
"synchronization",
"remote",
"backend",
"external",
"data",
"state",
"store",
"asynchronous",
"async",
"rxjs",
"ngx"
],
"type": "module",
"scripts": {
"prebuild:js": "npm run test && npm run lint",
"build:js": "node ./scripts/build.js",
"pretest": "node ./scripts/pretest.js",
"test": "node ./scripts/test.js",
"lint": "npx eslint -c .eslintrc.cjs --ext .ts ./src"
},
"peerDependencies": {
"@angular/core": ">=18.0.0 <19.0.0",
"@ngxs/store": ">=18.0.0",
"rxjs": "7.x.x",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/common": "^18.0.5",
"@angular/compiler": "^18.0.5",
"@angular/compiler-cli": "^18.0.5",
"@angular/core": "^18.0.5",
"@ngxs/store": "^18.0.0",
"@types/jasmine": "^4.3.1",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"c8": "^10.1.2",
"detest-bdd": "^1.2.1",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"extensionless": "^1.9.9",
"fs-extra": "^11.2.0",
"istanbul-cobertura-badger": "^1.3.1",
"jasmine": "^4.6.0",
"ng-packagr": "^18.0.0",
"rxjs": "^7.4.0",
"source-map-support": "^0.5.3",
"tslib": "^2.3.0",
"typescript": "~5.4.5",
"zone.js": "~0.14.7"
}
}