-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
47
48
{
"name": "create-ex-app",
"version": "1.1.7",
"description": "CLI tool to generate Express.js projects",
"type": "module",
"main": "index.js",
"directories": {
"doc": "docs"
},
"bin": {
"run-express-app": "./bin/create-express-app.js"
},
"scripts": {
"test": "node ./bin/create-express-app.js .",
"lint": "eslint .",
"format": "prettier . --write "
},
"repository": {
"type": "git",
"url": "git+https://github.com/GausAlMunirTushar/create-express-app.git"
},
"keywords": [
"Express",
"App",
"CLI",
"Node.js"
],
"author": "Gaus Al Munir Tushar",
"license": "MIT",
"bugs": {
"url": "https://github.com/GausAlMunirTushar/create-express-app/issues"
},
"homepage": "https://github.com/GausAlMunirTushar/create-express-app#readme",
"dependencies": {
"chalk": "^5.0.0",
"commander": "^10.0.0",
"express": "^4.21.2",
"fs-extra": "^11.0.0",
"inquirer": "^8.2.4"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"eslint": "^8.57.1",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"prettier": "3.4.2"
}
}