-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 895 Bytes
/
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
{
"name": "typescript-express-openapi",
"version": "1.0.1",
"description": "Typescript express OpenAPI helper",
"main": "lib/index.js",
"files": [
"*"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git://github.com/welltime/typescript-express-openapi.git"
},
"keywords": [
"typescript",
"openapi",
"api"
],
"author": "MCN telecom",
"license": "ISC",
"homepage": "https://github.com/welltime/typescript-express-openapi#readme",
"dependencies": {
"@types/express": "^4.17.21",
"chalk": "^4.1.2",
"express": "^4.17.1",
"multer": "^1.4.2",
"pino": "^9.3.2"
},
"devDependencies": {
"@types/multer": "^1.4.11",
"@types/node": "^17.0.45",
"typescript": "^4.3.5"
}
}