-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.74 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.74 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
79
{
"name": "ngrxdata",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start:json": "ng serve --proxy-config proxy.conf.json",
"start:sb": "ng serve --proxy-config proxy.conf-sb.json",
"build": "ng build --configuration production",
"buildwatch": "ng build --watch",
"test": "ng test",
"lint": "ng lint --fix",
"dbmock": "json-server --watch server.json --port 3004 --routes routes.json",
"compodoc": "./node_modules/.bin/compodoc -p src/tsconfig.app.json --disableSourceCode --disableDomTree --disableTemplateTab --disableGraph",
"compodoc-all": "./node_modules/.bin/compodoc -p src/tsconfig.app.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.2.12",
"@angular/common": "^14.2.12",
"@angular/compiler": "^14.2.12",
"@angular/core": "^14.2.12",
"@angular/forms": "^14.2.12",
"@angular/localize": "^14.2.12",
"@angular/platform-browser": "^14.2.12",
"@angular/platform-browser-dynamic": "^14.2.12",
"@angular/router": "^14.2.12",
"@fortawesome/angular-fontawesome": "^0.15.0",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.0",
"@ng-bootstrap/ng-bootstrap": "^13.1.1",
"@ngrx/data": "^14.3.2",
"@ngrx/effects": "^14.3.2",
"@ngrx/entity": "^14.3.2",
"@ngrx/store": "^14.3.2",
"@ngrx/store-devtools": "^14.3.2",
"@popperjs/core": "^2.10.2",
"bootstrap": "^5.2.0",
"core-js": "^2.6.11",
"ngx-spinner": "^14.0.0",
"ngx-toastr": "^15.2.2",
"rxjs": "^6.6.3",
"rxjs-compat": "^6.5.4",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.10",
"@angular-eslint/builder": "^14.4.0",
"@angular-eslint/eslint-plugin": "^14.4.0",
"@angular-eslint/eslint-plugin-template": "^14.4.0",
"@angular-eslint/schematics": "14.4.0",
"@angular-eslint/template-parser": "^14.4.0",
"@angular/cli": "^14.2.10",
"@angular/compiler-cli": "^14.2.12",
"@angular/language-service": "^14.2.12",
"@ngrx/schematics": "^14.3.2",
"@types/jasmine": "~3.8.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"codelyzer": "^6.0.0",
"eslint": "^8.23.0",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"json-server": "^0.15.1",
"karma": "~6.3.17",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "4.6.4",
"worker-loader": "1.1.1"
}
}