-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 982 Bytes
/
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
{
"name": "nodeJS-quickstart-boilerplate",
"version": "1.0.0",
"description": "This is a quick starter project for Node JS, which contained an MVC architecture pattern. It will reduce and get rid of many start-up work and configurations of your project.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon index.js",
"prod": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puneeth-techie/nodeJS-quickstart-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/puneeth-techie/nodeJS-quickstart-boilerplate/issues"
},
"homepage": "https://github.com/puneeth-techie/nodeJS-quickstart-boilerplate#readme",
"dependencies": {
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"mongoose": "^5.12.3"
},
"devDependencies": {
"morgan": "^1.10.0",
"nodemon": "^2.0.7"
}
}