-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "lets-create-api",
"version": "1.0.9",
"description": "An awesome CLI tool designed to accelerate the creation of Backend projects, making it effortless to build RESTful APIs with various backend and database technology combinations.",
"main": "index.js",
"bin": {
"lets-create-api": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format": "prettier --write .",
"lint-fix": "eslint --fix .",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/BoBsRepository/lets-create-api"
},
"author": "Puskar Roy",
"license": "MIT",
"bugs": {
"url": "https://github.com/BoBsRepository/lets-create-api/issues"
},
"homepage": "https://github.com/BoBsRepository/lets-create-api#readme",
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0"
},
"dependencies": {
"colorette": "^2.0.20",
"enquirer": "^2.4.1"
}
}