-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@open-template-hub/server-generator",
"description": "Command-line interface generator of the servers at Open Template Hub",
"version": "5.0.1",
"license": "MIT",
"preferGlobal": true,
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"outdated": "node dependency-checker.ts > docs/OUTDATED.md"
},
"bin": {
"open-template-hub-server-generator": "dist/src/index.js"
},
"dependencies": {
"@types/ncp": "^2.0.5",
"@types/rimraf": "^3.0.2",
"colors": "1.4.0",
"inquirer": "~8.2.5",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/inquirer": "^8.2.5",
"@types/node": "^18.11.18",
"@types/shelljs": "^0.8.11",
"@types/yargs": "^17.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"git repository": "https://github.com/open-template-hub/open-template-hub-server-generator",
"repository": {
"type": "git",
"url": "https://github.com/open-template-hub/server-generator.git"
},
"keywords": [
"server",
"rest",
"node",
"nodejs",
"typescript",
"mongo",
"mongodb",
"mongoose",
"postgre",
"postgresql",
"cli",
"auth",
"authentication",
"payment",
"busines",
"logic",
"business logic",
"backend",
"template",
"server template",
"auth server example",
"auth server template",
"payment server example",
"payment server template",
"business logic server example",
"business logic server template",
"mail server example",
"mail server template",
"open template hub"
]
}