-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "create_csapp",
"version": "1.0.2",
"description": "CLI tool to easily scaffold and set up full-stack applications with React, Node.js, and popular libraries like Socket.IO, Redis, Kafka, Prisma, and more.",
"main": "index.js",
"bin": {
"create_csapp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"author": "Swarup Bhise",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/CoderSwarup/create-csapp"
},
"keywords": [
"fullstack",
"cli",
"react",
"node",
"typescript",
"npm-package"
],
"bugs": {
"url": "https://github.com/CoderSwarup/create-csapp/issues"
},
"homepage": "https://github.com/CoderSwarup/create-csapp#readme",
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.7.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"inquirer": "^11.0.2"
}
}