-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 955 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
{
"name": "dishwasher-server",
"version": "0.0.1",
"description": "The REST API server to handle requests to the dishwasher database.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"clean-dishwasher": "node .\\dbscripts\\dishwasher.js",
"clean-user": "node .\\dbscripts\\user.js",
"clean-house": "node .\\dbscripts\\house.js",
"clean-house_user_bridge": "node .\\dbscripts\\house_user_bridge.js",
"clean-all": "node dbscripts\\dishwasher.js && node dbscripts\\user.js && node dbscripts\\house.js && node dbscripts\\house_user_bridge.js"
},
"author": "Hugh Dillon & Rick Holloway",
"license": "MIT",
"devDependencies": {
"express": "^4.15.4",
"json-loader": "^0.5.7",
"nodemon": "^1.12.1"
},
"dependencies": {
"aws-sdk": "^2.123.0",
"body-parser": "^1.18.2",
"config": "^1.26.2",
"express": "^4.15.4"
}
}