-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.64 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
{
"name": "@open-template-hub/app-generator",
"description": "Command-line interface generator of the user interfaces 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-app-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/app-generator",
"repository": {
"type": "git",
"url": "https://github.com/open-template-hub/app-generator.git"
},
"keywords": [
"ui",
"app",
"application",
"rest",
"node",
"nodejs",
"typescript",
"cli",
"template",
"ui template",
"angular",
"angular template",
"angular project example",
"react",
"react template",
"react project example",
"react native",
"react native template",
"react native project example",
"application generator",
"ui example",
"application template generator",
"open template hub",
"angular web",
"react native mobile",
"angular web application",
"react native mobile application"
]
}