-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "spec-linter-api",
"description": "An OpenAPI, AsyncAPI, and JSON/YAML linter API.",
"version": "0.0.1",
"private": true,
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.18.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"esbuild": "^0.14.18",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"scripts": {
"prepare": "lerna bootstrap",
"test": "jest --cacheDirectory=.cache/.jest",
"build": "tsc --build ./tsconfig.build.json && lerna run build",
"start": "npm run start --prefix=./infrastructure/server",
"watch:tsc": "tsc --build ./tsconfig.build.json -w --preserveWatchOutput",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
}
}