-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
84 lines (84 loc) · 2.53 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
{
"name": "ngneat-forms-manager",
"version": "0.0.0",
"scripts": {
"release": "cd projects/ngneat/forms-manager/ && standard-version --infile ../../../CHANGELOG.md",
"test": "ng test @ngneat/forms-manager",
"build": "ng build @ngneat/forms-manager --configuration production && npm run copy:readme",
"ng": "ng",
"prettier": "prettier --write \"**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"start": "ng serve",
"commit": "git cz",
"contributors:add": "all-contributors add",
"copy:readme": "cp README.md dist/ngneat/forms-manager"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.2.17",
"@angular/common": "~12.2.17",
"@angular/compiler": "~12.2.17",
"@angular/core": "~12.2.17",
"@angular/forms": "~12.2.17",
"@angular/platform-browser": "~12.2.17",
"@angular/platform-browser-dynamic": "~12.2.17",
"@angular/router": "~12.2.17",
"@ngneat/lib": "^3.0.1",
"@schuchard/prettier": "^3.1.0",
"core-js": "^2.5.4",
"ngx-semantic-version": "^1.2.1",
"ngx-take-until-destroy": "^5.4.0",
"rxjs": "~6.5.4",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.18",
"@angular/cli": "~12.2.18",
"@angular/compiler-cli": "~12.2.17",
"@commitlint/cli": "8.1.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@ngneat/spectator": "^8.3.2",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"all-contributors-cli": "^6.8.1",
"codelyzer": "^6.0.1",
"cross-env": "^5.2.0",
"git-cz": "^3.2.1",
"husky": "^3.0.1",
"jasmine-core": "3.8.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"lint-staged": "^9.2.0",
"ng-packagr": "^12.2.7",
"prettier": "2.3.0",
"protractor": "~7.0.0",
"standard-version": "^6.0.1",
"ts-node": "~8.3.0",
"tsickle": "0.43.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,html,component.html}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}