forked from nelsonlopezjimenez/Lab10.1-recipe-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 750 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
{
"name": "api",
"version": "1.0.0",
"description": "recipes-fullstack-March-2022 express mongo api",
"main": "index.js",
"scripts": {
"start": "nodemon --exec ./node_modules/.bin/babel-node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"mongo",
"fullstack",
"backend",
"api"
],
"author": "Nelson Lopez",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"nodemon": "^2.0.14"
},
"dependencies": {
"body-parser": "^1.17.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.15.4",
"mongoose": "^4.11.9",
"nodemon": "^1.19.4"
}
}