This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "cc-jobboard",
"private": true,
"version": "0.1.0",
"license": "GPL-3.0",
"author": "Alexis Janvier <[email protected]>",
"contributors": [],
"homepage": "https://github.com/CaenCamp/jobs-caen-camp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CaenCamp/jobs-caen-camp.git"
},
"bugs": {
"url": "https://github.com/CaenCamp/jobs-caen-camp/issues"
},
"workspaces": [
"apps/*",
"tests-e2e"
],
"scripts": {
"lint": "eslint .",
"format": "prettier --write --check \"**/*.+(js|md|json)\"",
"format:ci": "prettier --check \"**/*.+(js|md|json)\"",
"test": "jest",
"test:watch": "jest --watchAll",
"adr:new": "adr-tools new",
"adr:list": "adr-tools list"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@testing-library/jest-dom": "5.7.0",
"@testing-library/svelte": "3.0.0",
"adr-tools": "2.0.4",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "23.10.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-testing-library": "3.1.2",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.2",
"prettier": "2.0.5",
"prettier-plugin-svelte": "1.1.0",
"swagger-cli": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,css,json}": "yarn run lint",
"openapi.json": "yarn workspace cc-jobboard-api openapi:check"
}
}