-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.18 KB
/
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
{
"name": "social-media-app",
"version": "1.0.0",
"description": "React & MongoDB Social media App from online tutorial ## FreeCodeCamp.org React / GraphQL Course - Build a social media app (MERNG Stack) ### URL - https://www.youtube.com/watch?v=n1mdAPFq2Os ### Description Learn how to create a social media app using MongoDB, Express, Node, React, GraphQL, and Node (the MERNG stack). You will learn how to implement a GraphQL server that uses Node and Express to communicate to a MongoDB Database and fetch and persist data to a social media app back-end.",
"main": "index.js",
"scripts": {
"serve": "node index",
"start": "nodemon index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dletorey/social-media-app.git"
},
"keywords": [],
"author": "Dave Letorey",
"license": "ISC",
"bugs": {
"url": "https://github.com/dletorey/social-media-app/issues"
},
"homepage": "https://github.com/dletorey/social-media-app#readme",
"dependencies": {
"apollo-server": "^2.18.2",
"bcryptjs": "^2.4.3",
"graphql": "^15.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.9"
},
"devDependencies": {
"nodemon": "^2.0.5"
}
}