-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 935 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
{
"name": "master-assignment-3",
"version": "1.1.0",
"description": "A small business review API",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "NODE_ENV=development nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSU-CS493-Sp18/master-assignment-3.git"
},
"author": "Hess <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/OSU-CS493-Sp18/master-assignment-3/issues"
},
"homepage": "https://github.com/OSU-CS493-Sp18/master-assignment-3#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.2",
"mongodb": "^3.0.10",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"redis": "^2.8.0"
},
"devDependencies": {
"nodemon": "^1.17.3"
}
}