-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.48 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
{
"name": "ngx-pub-sub",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx run test-app:serve:development",
"lib:build": "npm run rxjs-pub-sub:build",
"rxjs-pub-sub:build": "npx nx run rxjs-pub-sub:build",
"lib:test": "npm run rxjs-pub-sub:test",
"rxjs-pub-sub:test": "nx run rxjs-pub-sub:test",
"lib:coverage": "npm run rxjs-pub-sub:coverage",
"rxjs-pub-sub:coverage": "nx run rxjs-pub-sub:test --watch=false --code-coverage",
"test:ngx-pub-sub": "nx test ngx-pub-sub",
"pack:ngx-pub-sub": "npm run step1_build_ngx && npm run step2_pack_ngx",
"step1_build_ngx": "nx build ngx-pub-sub",
"step2_pack_ngx": "cd dist && npm pack ./ngx-pub-sub"
},
"private": true,
"dependencies": {
"@angular/animations": "~16.2.12",
"@angular/cdk": "~16.2.12",
"@angular/common": "~16.2.12",
"@angular/compiler": "~16.2.12",
"@angular/core": "~16.2.12",
"@angular/forms": "~16.2.12",
"@angular/material": "~16.2.12",
"@angular/platform-browser": "~16.2.12",
"@angular/platform-browser-dynamic": "~16.2.12",
"@angular/router": "~16.2.12",
"@nrwl/angular": "^17.1.1",
"core-js": "^3.36.1",
"postcss-preset-env": "^7.8.3",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~16.2.16",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "~16.2.13",
"@angular/compiler-cli": "~16.2.12",
"@angular/language-service": "~16.2.12",
"@nrwl/eslint-plugin-nx": "15.9.7",
"@nrwl/jest": "15.9.7",
"@nrwl/js": "15.9.7",
"@nrwl/linter": "15.9.7",
"@types/jasmine": "~4.0.0",
"@types/jest": "^29.4.0",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"jasmine-core": "~4.2.0",
"jasmine-spec-reporter": "~7.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^16.2.3",
"nx": "16.7.4",
"prettier": "^2.6.2",
"puppeteer": "^22.6.1",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typescript": "~5.1.6"
},
"workspaces": [
"libs/*"
]
}