forked from piercerod57/AirBNBBackend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.14 KB
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
41
42
43
44
45
46
47
48
49
50
{
"name": "bnbcleaningapi",
"version": "0.0.1",
"description": "This api facilitates the managing of scheduling cleanings for those who manage airbnb locations",
"keywords": [
"cleaning",
"airbnb",
"scheduling"
],
"homepage": "https://github.com/agforeman/bnbCleaningsAPI#readme",
"bugs": {
"url": "https://github.com/agforeman/bnbCleaningsAPI/issues"
},
"repository": "github:agforeman/bnbCleaningsAPI.git",
"author": "Alex Foreman",
"contributors": [
{
"name": "Mac Connelly",
"email": "mac@macconnolly.com"
},
{
"name": "Alex Foreman",
"email": "ALEXANDER.FOREMAN@UCDENVER.EDU"
}
],
"license": "MIT",
"main": "app.js",
"dependencies": {
"express": "^4.12.3",
"cors": "^2.8.5",
"mongoose": "^5.0.9",
"mongodb": "^3.2.3",
"swagger-express-mw": "^0.1.0",
"ical": "^0.6.0"
},
"devDependencies": {
"should": "^7.1.0",
"dotenv": "^6.2.0",
"supertest": "^1.0.0"
},
"scripts": {
"start": "node app.js",
"test": "swagger project test"
},
"api": {
"name": "api-mongo",
"basePath": "/api-mongo",
"main": "app.js"
}
}