-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.05 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
50
51
{
"name": "nex-init",
"version": "1.0.0",
"description": "This makes backend work little bit easy",
"main": "app.js",
"scripts": {
"start": "nodemon app.js",
"dev": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RajKumar-Developer/nex-init.git"
},
"keywords": [
"node",
"express"
],
"author": "Rajkumar",
"license": "ISC",
"bugs": {
"url": "https://github.com/RajKumar-Developer/nex-init/issues"
},
"homepage": "https://github.com/RajKumar-Developer/nex-init#readme",
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"fs-extra": "^10.1.0",
"path": "^0.12.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.0.3"
},
"files": [
"app.js",
"routes/",
"public/",
"views/",
"config/",
"middlewares/",
"config/",
"logs/"
]
}