-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "startease-cli",
"version": "1.3.0",
"description": "StartEase is a versatile command-line tool designed to simplify and accelerate project setup. It empowers developers to quickly scaffold projects, select from various templates, and integrate with different databases, allowing for a smooth and efficient project kickstart.",
"main": "./cli.js",
"type": "module",
"scripts": {
"start": "node ./cli.js",
"format": "prettier . --write",
"lint": "prettier . --check"
},
"keywords": [
"startease",
"fullstack",
"react",
"node",
"nestjs",
"expressjs",
"javascript",
"nextjs",
"cli"
],
"author": "jc coder",
"license": "ISC",
"dependencies": {
"axios": "^1.3.1",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"dotenv": "^16.4.5",
"figlet": "^1.6.0",
"fs-extra": "^11.1.1",
"gradient-string": "^2.0.2",
"inquirer": "^8.2.6",
"is-online": "^10.0.0",
"ora": "^7.0.1",
"semver": "^7.6.2",
"shelljs": "^0.8.5",
"simple-git": "^3.19.1"
},
"bin": {
"startease-cli": "./cli.js"
},
"devDependencies": {
"prettier": "^3.0.3"
}
}