-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.18 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
{
"name": "create-fs-cli",
"version": "2.0.0",
"description": "CLI tool to scaffold full-stack applications with interactive prompts",
"main": "src/index.js",
"bin": {
"create-fs-cli": "./src/index.js"
},
"type": "module",
"scripts": {
"dev": "node src/index.js",
"start": "node src/index.js",
"link": "npm link"
},
"keywords": [
"cli",
"fullstack",
"scaffold",
"generator",
"nextjs",
"react",
"vite",
"svelte",
"express",
"fastify",
"fastapi",
"boilerplate"
],
"author": "HemanthRaj0C",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HemanthRaj0C/fullstack-cli.git"
},
"bugs": {
"url": "https://github.com/HemanthRaj0C/fullstack-cli/issues"
},
"homepage": "https://github.com/HemanthRaj0C/fullstack-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"blessed": "^0.1.81",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"figlet": "^1.7.0",
"figures": "^6.1.0",
"fs-extra": "^11.2.0",
"gradient-string": "^3.0.0",
"inquirer": "^9.2.12",
"ora": "^8.0.1"
}
}