-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 918 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
{
"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": "SET NODE_ENV=development & nodemon server.js",
"relay": "node relay.js",
"dev": "NODE_ENV=development nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OSU-CS493-Sp18/master-assignment-2.git"
},
"author": "Hess <hessro@oregonstate.edu>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/OSU-CS493-Sp18/master-assignment-2/issues"
},
"homepage": "https://github.com/OSU-CS493-Sp18/master-assignment-2#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"superagent": "^3.8.3"
},
"devDependencies": {
"nodemon": "^1.17.3"
}
}