-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
97 lines (97 loc) · 3.02 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "dialog",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "nx serve playground",
"build": "nx build playground --prod",
"deploy": "nx deploy --base-href=https://ngneat.github.io/dialog/",
"hooks:pre-commit": "node scripts/pre-commit.js",
"commit": "git-cz",
"build:lib": "nx build dialog --configuration production && node scripts/post-build.js",
"test:lib": "nx test dialog",
"release": "nx run dialog:version",
"ci:test": "npm run test:lib",
"ci:lint": "nx run-many --target=lint",
"prepare": "husky install",
"migration:run": "nx migrate --run-migrations",
"migrate": "nx migrate latest"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.4",
"@angular/common": "^17.0.4",
"@angular/compiler": "^17.0.4",
"@angular/core": "^17.0.4",
"@angular/forms": "^17.0.4",
"@angular/platform-browser": "^17.0.4",
"@angular/platform-browser-dynamic": "^17.0.4",
"@angular/router": "^17.0.4",
"@ngneat/overview": "6.0.0",
"rxjs": "~7.5.0",
"tslib": "2.3.1",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.3",
"@angular/cli": "^17.0.3",
"@angular/compiler-cli": "^17.0.4",
"@angular-devkit/core": "16.2.10",
"@angular-devkit/schematics": "16.2.10",
"@angular-eslint/eslint-plugin": "^16.3.1",
"@angular-eslint/eslint-plugin-template": "^16.3.1",
"@angular-eslint/template-parser": "^16.3.1",
"@commitlint/cli": "18.4.1",
"@commitlint/config-angular": "18.4.0",
"@commitlint/config-conventional": "18.4.0",
"@jscutlery/semver": "4.0.0",
"@ngneat/spectator": "15.0.1",
"@nx/angular": "17.1.3",
"@nx/eslint-plugin": "17.1.3",
"@nx/js": "17.1.3",
"@nx/linter": "17.1.3",
"@nx/workspace": "17.1.3",
"@schematics/angular": "^15.2.7",
"@swc-node/register": "~1.6.7",
"@swc/core": "~1.3.85",
"@types/jasmine": "4.3.0",
"@types/node": "18.17.18",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"angular-cli-ghpages": "1.0.7",
"chalk": "4.1.2",
"cross-env": "^5.2.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"git-cz": "4.9.0",
"husky": "8.0.3",
"jasmine-core": "5.1.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lint-staged": "15.1.0",
"ng-packagr": "^17.0.2",
"nx": "17.1.3",
"postcss": "8.4.31",
"postcss-import": "15.1.0",
"postcss-preset-env": "9.3.0",
"postcss-url": "10.1.3",
"prettier": "3.0.3",
"typescript": "~5.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write"
]
}
}