-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·93 lines (93 loc) · 2.09 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "fastify-typescript-generator",
"version": "0.3.0",
"description": "Generate new Fastify applications similar to express-generate which but sets it up to use TypeScript instead",
"preferGlobal": true,
"scripts": {
"fastify-generator-typescript": "node lib/cli.js",
"start": "node lib/cli.js",
"test": "snyk test",
"commit-a": "git add . && git cz",
"commit": "git cz",
"snyk-protect": "snyk protect"
},
"repository": {
"type": "git",
"url": "https://github.com/open-devs/fastify-typescript-generator.git"
},
"main": "./lib/cli.js",
"module": "./lib/cli.js",
"unpkg": "./lib/cli.js",
"bin": {
"fastify-gen": "./bin/fastify-typescript-generator.js",
"fastify-ts-gen": "./bin/fastify-typescript-generator.js",
"fastify-typescript-generator": "./bin/fastify-typescript-generator.js"
},
"keywords": [
"generator",
"generate",
"fastify",
"fast",
"boilerplate",
"starter",
"start",
"template",
"express",
"ex",
"mongodb",
"mongo",
"typeorm",
"orm",
"swagger",
"open",
"open-api",
"gen",
"typescript",
"ts",
"types",
"typing",
"overnight",
"overnightjs",
"js",
"new",
"app",
"decorators",
"decorate",
"test",
"testing",
"routes",
"router",
"routing",
"fastify-typescript-generator",
"fastify-typescript-gen",
"fastify-ts-gen"
],
"author": "open devs ([email protected])",
"contributors": [
"Mihir Kumar (mikr13)",
"Alok Raj (alok722)"
],
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/open-devs/fastify-typescript-generator/issues"
},
"homepage": "https://github.com/open-devs/fastify-typescript-generator#readme",
"dependencies": {
"cfonts": "^2.9.1",
"chalk": "^4.1.0",
"ncp": "^2.0.0",
"prompts": "^2.4.1",
"snyk": "^1.534.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"git-cz": "^4.7.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"snyk": true
}