-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
82 lines (82 loc) · 2.47 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
{
"name": "ngx-libs",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"add-lib": "nx g plugin:new-lib",
"postinstall": "npx simple-git-hooks",
"sync-versions": "npx nx run libs-scrapper-app:extract --skipNxCache",
"generate-releases-json": "GITHUB_TOKEN=x GENERATE_RELEASES_JSON=true npx nx run libs-scrapper-app:extract"
},
"private": true,
"dependencies": {
"@angular/animations": "16.2.0",
"@angular/cdk": "^16.2.0",
"@angular/common": "16.2.0",
"@angular/compiler": "16.2.0",
"@angular/core": "16.2.0",
"@angular/forms": "16.2.0",
"@angular/material": "^16.2.0",
"@angular/platform-browser": "16.2.0",
"@angular/platform-browser-dynamic": "16.2.0",
"@angular/router": "16.2.0",
"@ngrx/component-store": "^16.2.0",
"@nx/devkit": "16.5.3",
"@swc/helpers": "~0.5.0",
"octokit": "^3.1.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.0",
"@angular-devkit/core": "16.2.0",
"@angular-devkit/schematics": "16.2.0",
"@angular/cli": "16.2.0",
"@angular/compiler-cli": "16.2.0",
"@nx/angular": "16.5.3",
"@nx/esbuild": "17.2.6",
"@nx/eslint-plugin": "16.5.3",
"@nx/jest": "17.2.6",
"@nx/js": "17.2.6",
"@nx/linter": "16.5.3",
"@nx/node": "17.2.6",
"@nx/plugin": "^16.5.3",
"@nx/workspace": "16.5.3",
"@schematics/angular": "~16.1.4",
"@swc-node/register": "~1.6.7",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.85",
"@types/jasmine": "~4.3.0",
"@types/jest": "^29.4.0",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"esbuild": "^0.19.2",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"jasmine-core": "~4.5.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^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",
"nx": "16.5.3",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.3",
"pretty-quick": "^3.1.3",
"simple-git-hooks": "^2.8.1",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~4.9.4"
},
"simple-git-hooks": {
"pre-commit": "npx pretty-quick --staged"
}
}