-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.41 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "swagger-fastify-gen",
"version": "1.0.23",
"description": "",
"author": "",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"dev": "node -r ts-node/register src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --colors",
"update-examples": "node -r ts-node/register ./examples/update-examples.ts",
"prepare": "husky install"
},
"dependencies": {
"enquirer": "^2.4.1",
"fastify": "^4.23.2",
"graph-data-structure": "^3.3.0",
"pino": "^8.15.1",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@fastify/type-provider-typebox": "^3.5.0",
"@sinclair/typebox": "^0.31.15",
"@tsconfig/node18": "^2.0.1",
"@types/inquirer": "^9.0.3",
"@types/pluralize": "^0.0.31",
"eslint": "^8.41.0",
"husky": "^8.0.0",
"rimraf": "^4.4.1",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.1",
"typescript": "5.0.4"
},
"standard": {
"env": {
"jest": true,
"node": true
}
},
"keywords": [
"swagger",
"openapi",
"fastify",
"typebox"
],
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"bin": {
"fastgen": "./dist/index.js"
},
"homepage": ""
}