-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 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
{
"name": "start-it-cli",
"version": "1.0.1",
"description": "A prompt-based CLI tool to scaffold projects for Go, Flutter, React Native, Spring Boot, and more",
"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",
"go",
"flutter",
"react-native",
"spring-boot"
],
"author": "",
"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"
}
}