-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.79 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
{
"name": "rehooktive",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"release:first": "yarn run release -- --first-release",
"build:lib": "ng build @ngze/rehooktive",
"test:lib": "ng test @ngze/rehooktive",
"release": "cd projects/ngze/rehooktive && standard-version --infile ../../../CHANGELOG.md",
"test:lib:headless": "cross-env CI=true yarn run test:lib"
},
"dependencies": {
"@angular/animations": "~10.0.9",
"@angular/common": "~10.0.9",
"@angular/compiler": "~10.0.9",
"@angular/core": "~10.0.9",
"@angular/forms": "~10.0.9",
"@angular/platform-browser": "~10.0.9",
"@angular/platform-browser-dynamic": "~10.0.9",
"@angular/router": "~10.0.9",
"@ngneat/lib": "^1.0.4",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-builders/jest": "^9.0.1-beta.2",
"@angular-devkit/build-angular": "~0.1000.6",
"@angular-devkit/build-ng-packagr": "~0.1000.6",
"@angular-eslint/builder": "0.1.0-beta.1",
"@angular-eslint/eslint-plugin": "0.1.0-beta.1",
"@angular-eslint/eslint-plugin-template": "0.1.0-beta.1",
"@angular-eslint/schematics": "^0.1.0-beta.1",
"@angular-eslint/template-parser": "0.1.0-beta.1",
"@angular/cli": "~10.0.6",
"@angular/compiler-cli": "~10.0.9",
"@commitlint/cli": "8.1.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@ngneat/spectator": "latest",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^26.0.10",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "3.9.0",
"@typescript-eslint/parser": "3.9.0",
"all-contributors-cli": "^6.8.1",
"codelyzer": "^6.0.0",
"cross-env": "^5.2.0",
"eslint": "^7.6.0",
"git-cz": "^3.2.1",
"husky": "^3.0.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^26.4.2",
"jest-preset-angular": "^8.3.1",
"lint-staged": "^9.2.0",
"ng-packagr": "^10.0.0",
"prettier": "^2.0.5",
"protractor": "~7.0.0",
"standard-version": "^8.0.1",
"ts-node": "~8.3.0",
"typescript": "~3.9.5"
},
"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": "yarn run hooks:pre-commit && lint-staged",
"pre-push": "yarn run test:lib:headless"
}
}
}