-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "opanapi-based-api-generator",
"version": "0.0.1",
"description": "OpenAPI based API Generating boilerplate",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"postbuild": "copyfiles -u 1 src/**/*.md dist",
"test": "jest",
"test:watch": "jest --watch --collectCoverage",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "Eunchurn Park <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@types/express": "4.17.17",
"@types/jest": "29.4.0",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.191",
"@types/node": "18.11.19",
"@types/swagger-ui-express": "4.1.3",
"@types/yamljs": "0.2.31",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"copyfiles": "2.4.1",
"eslint": "8.33.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"husky": "8.0.3",
"jest": "29.4.1",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "4.9.5"
},
"dependencies": {
"ajv": "^8.11.0",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"openapi-types": "^12.0.0",
"swagger-routes-express": "^3.3.1",
"swagger-ui-express": "^4.1.6",
"yamljs": "^0.3.0"
},
"repository": "[email protected]:eunchurn/openapi-api-generator.git",
"private": false
}