-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1018 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1018 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
31
32
33
34
35
36
37
38
39
40
{
"name": "mymdb",
"version": "1.0.0",
"description": "Backend API for myMDb",
"main": "app.js",
"scripts": {
"start": "node app",
"dev": "NODE_ENV=development nodemon app",
"test": "jest --runInBand --coverage --config ./jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malachispencer/myMDb.git"
},
"author": "Malachi Spencer",
"license": "ISC",
"bugs": {
"url": "https://github.com/malachispencer/myMDb/issues"
},
"homepage": "https://github.com/malachispencer/myMDb#readme",
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "^2.0.6"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.5.1"
}
}