-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
80 lines (80 loc) · 2.43 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
{
"name": "error-tailor-playground",
"version": "0.0.0",
"scripts": {
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"build:lib": "ng build @ngneat/error-tailor --configuration production && cp -r README.md dist/ngneat/error-tailor",
"release": "cd projects/ngneat/error-tailor && standard-version --infile ../../../CHANGELOG.md",
"test:headless": "cross-env CI=true npm run test",
"test:lib": "ng test @ngneat/error-tailor",
"test:lib:headless": "cross-env CI=true npm run test:lib"
},
"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/lib": "^1.0.1",
"rxjs": "^7.8.0",
"tslib": "2.5.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.3",
"@angular-devkit/schematics": "^17.0.3",
"@angular-devkit/schematics-cli": "^0.901.7",
"@angular/cli": "^17.0.3",
"@angular/compiler-cli": "^17.0.4",
"@commitlint/cli": "8.1.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@ngneat/spectator": "^14.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"all-contributors-cli": "^6.8.1",
"cross-env": "^5.2.0",
"git-cz": "^3.2.1",
"husky": "^3.0.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"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",
"lint-staged": "^9.2.0",
"ng-packagr": "^17.0.2",
"prettier": "3.1.0",
"standard-version": "^6.0.1",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~5.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged"
}
}
}