forked from JscramblerBlog/express-mongoose-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 713 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 713 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
{
"name": "mongodb-mongoose-relationships",
"version": "0.0.1",
"description": "build database relationships with node.js and mongodb using mongoose",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"seed": "node ./database/seeder"
},
"keywords": [
"mongodb",
"nodejs",
"mongoose",
"mongoosejs",
"database relationships"
],
"author": "Connor Leech",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"method-override": "^3.0.0",
"mongoose": "^5.7.8"
}
}