-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 986 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 986 Bytes
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
{
"name": "@abdullahbrashid/create-express-backend",
"version": "0.4.5",
"keywords": [
"create",
"express",
"mongoose",
"mongodb",
"typescript",
"jwt",
"backend",
"template"
],
"description": "Create a template for express mongodb backend.",
"bin": {
"create-express-backend": "dist/index.js"
},
"main": "dist/index.js",
"homepage": "https://github.com/AbdullahBRashid/express-backend-template#readme",
"bugs": "https://github.com/AbdullahBRashid/express-backend-template/issues",
"license": "MIT",
"scripts": {
"start": "node .",
"build": "tsc -p ."
},
"author": {
"name": "Abdullah Bin Rashid",
"email": "abdullabinrashid2005abr@gmail.com",
"url": "https://github.com/AbdullahBRashid"
},
"files": [
"templates",
"dist"
],
"dependencies": {
"inquirer": "^8.2.6",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.19",
"@types/shelljs": "^0.8.15",
"typescript": "^5.3.3"
}
}