forked from osu-cs493-sp19/final-project-team-outta-here
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 990 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
36
{
"name": "master-assignment-2",
"version": "1.0.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-sp19/master-assignment-2.git"
},
"author": "Hess <hessro@oregonstate.edu>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/osu-cs493-sp19/master-assignment-2/issues"
},
"homepage": "https://github.com/osu-cs493-sp19/master-assignment-2#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"csv-stringify": "^5.3.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.2.7",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"mysql": "^2.17.1",
"redis": "^2.8.0"
},
"devDependencies": {
"nodemon": "^1.18.11"
}
}