-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 765 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 765 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
{
"name": "thoughts",
"version": "1.0.0",
"description": "A social networking backend in MongoDB where users can share their thoughts and reactions",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"watch": "nodemon server.js",
"seed": "node utils/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cancer2806/Thoughts.git"
},
"keywords": [],
"author": "Frank Lavery",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cancer2806/Thoughts/issues"
},
"homepage": "https://github.com/Cancer2806/Thoughts#readme",
"dependencies": {
"express": "^4.18.1",
"moment": "^2.29.3",
"mongoose": "^6.4.0"
}
}