-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 835 Bytes
/
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
32
33
34
35
{
"name": "fuzzy-happiness-bookmarks",
"version": "1.0.0",
"description": "A basic bookmarking application with tags",
"main": "app.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RajatSablok/fuzzy-happiness-bookmarks.git"
},
"keywords": [
"bookmark",
"bookmarks",
"tags"
],
"author": "Rajat Sablok",
"license": "MIT",
"bugs": {
"url": "https://github.com/RajatSablok/fuzzy-happiness-bookmarks/issues"
},
"homepage": "https://github.com/RajatSablok/fuzzy-happiness-bookmarks#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.10.2",
"uuid": "^8.3.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}