-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "@eropple/fastify-openapi3",
"version": "0.3.4",
"author": "Ed Ropple",
"license": "LGPL-3.0",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"*",
"src/**/*",
"test/**/*",
"dist/**/*",
"examples/**/*"
],
"scripts": {
"build": "tsc",
"watch": "yarn run -s build --watch",
"test": "jest ./test",
"lint": "eslint",
"format:check": "prettier --check ./src",
"format:write": "prettier --write ./src",
"demo": "node --loader ts-node/esm ./examples/start-server.ts"
},
"dependencies": {
"@seriousme/openapi-schema-validator": "1.7.1",
"@sinclair/typebox": "^0.28.9",
"ajv": "^8.12.0",
"change-case": "4.1.2",
"fastify": "^4.14.1",
"fastify-plugin": "^4.5.0",
"js-yaml": "^4.1.0",
"openapi-ts": "^0.3.4",
"openapi3-ts": "^2.0.2",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
}
}