feat(core): add contributing file and verif

This commit is contained in:
thomas laforge
2022-11-12 21:16:51 +01:00
parent e2edf997f1
commit 16a0556ee2
7 changed files with 2331 additions and 1 deletions

View File

@@ -7,7 +7,8 @@
"postinstall": "node ./decorate-angular-cli.js",
"start": "nx serve",
"build": "nx build",
"test": "nx test"
"test": "nx test",
"prepare": "husky install"
},
"private": true,
"dependencies": {
@@ -41,6 +42,8 @@
"@angular/cli": "~14.2.0",
"@angular/compiler-cli": "~14.2.0",
"@angular/language-service": "~14.2.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@nrwl/cli": "15.0.7",
"@nrwl/cypress": "15.0.7",
"@nrwl/eslint-plugin-nx": "15.0.7",
@@ -55,13 +58,20 @@
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"husky": "^8.0.2",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "~12.2.2",
"lint-staged": "^13.0.3",
"nx": "15.0.7",
"prettier": "^2.6.2",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2"
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write"
]
}
}