forked from lukeautry/tsoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "tsoa-monorepo",
"description": "Build swagger-compliant REST APIs using TypeScript and Node",
"private": true,
"keywords": [
"typescript",
"openapi",
"swagger",
"server",
"node",
"node.js",
"codegen",
"generation",
"express",
"hapi.js",
"koa"
],
"author": "Luke Autry <[email protected]> (http://www.lukeautry.com)",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"yarn run prettier --write",
"yarn run lint:fix"
]
},
"scripts": {
"build": "lerna run build --stream",
"deploy": "yarn bump && lerna publish from-git",
"bump": "lerna version patch -m \"Release v%s\" --force-publish",
"clean": "lerna run clean --stream",
"prepare": "yarn build",
"preversion": "yarn test",
"test": "lerna run test --stream",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn run eslint --ext .ts --fix",
"watch": "lerna run watch",
"lerna": "lerna"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^4.3.0",
"lerna": "^7.3.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1"
},
"resolutions": {
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/lukeautry/tsoa.git"
},
"engines": {
"yarn": ">=1.9.4",
"node": ">=18.0.0"
},
"engineStrict": true,
"workspaces": [
"packages/*",
"tests",
"tests/esm"
]
}