-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.91 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
{
"name": "@popeyelab/ngx-validator",
"version": "2.6.1",
"description": "A Reactive Form Validator library for Angular.",
"scripts": {
"ng": "ng",
"start": "ng serve",
"commit": "git-cz",
"bump-version": "rjp package.json version $VERSION",
"build": "npm run build:library && npm run build:demo",
"build:library": "ng build --project=ngx-validator && npm run copy-readme",
"build:demo": "ng build --project=ngx-validator-demo",
"copy-readme": "copyfiles README.md dist/ngx-validator",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "eslint projects/**/*.ts",
"lint:fix": "eslint projects/**/*.ts --fix",
"lint-staged": "lint-staged --allow-empty",
"format:test": "prettier --list-different 'projects/**/*.{ts,html}'",
"format:write": "prettier --write 'projects/**/*.{ts,html}'",
"commitlint": "commitlint --edit",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.0",
"@angular/cdk": "15.2.9",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/forms": "^15.2.0",
"@angular/material": "15.2.9",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@angular/router": "^15.2.0",
"bootstrap": "^5.2.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.7",
"@angular/cli": "~15.2.5",
"@angular/compiler-cli": "^15.2.0",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@commitlint/cz-commitlint": "^17.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@types/jasmine": "~4.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"commitizen": "^4.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.40.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jasmine-core": "~4.5.0",
"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",
"lint-staged": "^13.2.2",
"ng-packagr": "^15.2.2",
"prettier": "^2.8.8",
"replace-json-property": "^1.8.0",
"semantic-release": "^21.0.2",
"typescript": "~4.9.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
100
]
}
},
"lint-staged": {
"*.{ts,js,html,css,scss,less,md,json}": "prettier --write"
}
}