forked from eunchurn/openapi-api-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 KB
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 <eunchurn.park@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/express": "4.17.14",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.24",
"@types/node": "22.19.15",
"@types/swagger-ui-express": "4.1.8",
"@types/yamljs": "0.2.34",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"copyfiles": "2.4.1",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.32.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.2.3",
"prettier": "3.8.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.9.3"
},
"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": "^11.0.0",
"swagger-routes-express": "^3.3.1",
"swagger-ui-express": "^4.1.6",
"yamljs": "^0.3.0"
},
"repository": "git@github.com:eunchurn/openapi-api-generator.git",
"private": false
}