forked from openapi-library/OpenAPIValidators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"private": true,
"name": "openapi-validators",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"postinstall": "patch-package",
"patch-packages": "yarn patch-package openapi-response-validator",
"clean": "yarn workspaces run clean && rimraf packages/.nyc_output && rimraf packages/coverage",
"format": "prettier --write . --ignore-path .prettierignore",
"lint": "yarn workspaces run lint",
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"test:ci": "yarn workspaces run test:ci",
"lerna:version:preview": "yarn lerna:version --no-git-tag-version",
"lerna:version": "lerna version -m \"chore(release): %s\" --conventional-commits --no-changelog",
"lerna:publish": "lerna publish"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-mocha": "^8.0.0",
"express": "^4.17.1",
"husky": "^4.3.0",
"lerna": "^4.0.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn test:ci"
}
}
}