forked from openapi-library/OpenAPIValidators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.67 KB
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
{
"private": true,
"name": "openapi-validators",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"clean": "yarn workspaces foreach -A run clean && rimraf packages/.nyc_output && rimraf packages/coverage",
"format": "prettier --write . --ignore-path .prettierignore",
"lint": "yarn workspaces foreach -A run lint",
"build": "yarn workspaces foreach -A run build",
"test": "yarn workspaces foreach -A run test",
"test:ci": "yarn workspaces foreach -A run test:ci",
"version:bump": "node scripts/bump-version.mjs"
},
"resolutions": {
"openapi-types": "^12.1.3",
"serialize-javascript": "^7.0.5",
"uuid": "^11.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.7",
"@eslint/js": "^10.0.0",
"@types/express": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"eslint": "^10.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-chai-friendly": "^1.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^29.16.6",
"eslint-plugin-mocha": "^12.0.2",
"express": "^5.2.1",
"globals": "^17.12.0",
"husky": "^9.1.7",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn test:ci"
}
},
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7"
}