-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 883 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 883 Bytes
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
{
"name": "openapi-typescript-server",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:barlesh/openapi-typescript-server.git",
"author": "Bar Leshem <barlesh8@gmail.com>",
"license": "MIT",
"private": true,
"dependencies": {
"@types/body-parser": "^1.19.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.1",
"@types/supertest": "^2.0.11",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-openapi-validator": "^4.13.0",
"jest": "^27.0.6",
"lodash": "^4.17.21",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
},
"devDependencies": {
"ts-node": "^10.2.1"
},
"scripts": {
"build": "tsc",
"start": "node ./bin/index.js",
"dev": "ts-node ./src/index.ts",
"test": "jest"
}
}