-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1021 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
{
"name": "noted",
"version": "1.0.1",
"description": "This project is a fullstack project that allows users to create and access their accounts, which store notes and collections that they have created. The collections could be anything the user wants. Collections display as a book with separate pages, so I created a recipe book.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephanie-lane/Noted.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stephanie-lane/Noted/issues"
},
"homepage": "https://github.com/stephanie-lane/Noted#readme",
"dependencies": {
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-jwt": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.2",
"morgan": "^1.10.0"
}
}