forked from lukeautry/tsoa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.57 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
{
"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 lint --fix",
"watch": "lerna run watch --parallel",
"lerna": "lerna"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.0",
"lerna": "^4.0.0",
"lint-staged": "^10.4.0",
"prettier": "^2.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/lukeautry/tsoa.git"
},
"engines": {
"yarn": ">=1.9.4",
"node": ">=12.0.0"
},
"engineStrict": true,
"workspaces": [
"packages/*",
"tests",
"tests/esm"
]
}