-
Notifications
You must be signed in to change notification settings - Fork 503
/
package.json
75 lines (75 loc) · 1.73 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
74
75
{
"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",
"typedocs": "typedoc --options ./typedoc.json"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^4.3.0",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7"
},
"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"
]
}