-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.13 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
{
"name": "start-it-cli",
"version": "1.0.1",
"description": "A guided CLI for scaffolding backend, frontend, AI/ML, and DSA project baselines",
"main": "dist/index.js",
"bin": {
"start-it-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"scaffold",
"project-generator",
"backend",
"frontend",
"ai-ml",
"dsa",
"express",
"nestjs",
"fastapi",
"nextjs",
"vite"
],
"author": "Mugisha Pascal",
"contributors": [
"Mugisha Prosper"
],
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"inquirer": "^8.2.5",
"fs-extra": "^11.1.1",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/inquirer": "^8.2.5",
"@types/fs-extra": "^11.0.4",
"typescript": "^5.3.3",
"ts-node": "^10.9.2",
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}