-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 840 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 840 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
{
"name": "node-express-api",
"version": "1.0.0",
"description": "This is a simple web server built in nodejs and expressjs",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"keywords": [
"mern",
"nodejs",
"expressjs",
"webdev"
],
"repository": {
"type": "git",
"url": "git+https://github.com/idjevm/node-express-api.git"
},
"author": "Josue Villanueva",
"license": "MIT",
"bugs": {
"url": "https://github.com/idjevm/node-express-api/issues"
},
"homepage": "https://github.com/idjevm/node-express-api#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"body-parser": "^1.19.0",
"config": "^3.3.1",
"cors": "^2.8.5",
"mongoose": "^5.9.10"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}