-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 KB
/
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
37
38
{
"name": "disposable.superserious.co",
"version": "1.0.0",
"description": "API for disposable camera",
"main": "index.js",
"scripts": {
"start": "if [ \"$NODE_ENV\" = \"production\" ]; then node index.js; else nodemon; fi",
"test": "mocha",
"dropTables": "node db/dropTables.js",
"createTables": "node db/createTables.js",
"dynamo": "docker run -p 8000:8000 deangiberson/aws-dynamodb-local"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/neilsarkar/disposable.git"
},
"author": "Neil Sarkar",
"license": "ISC",
"bugs": {
"url": "https://github.com/neilsarkar/disposable/issues"
},
"homepage": "https://github.com/neilsarkar/disposable#readme",
"dependencies": {
"aws-sdk": "^2.82.0",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"mailgun-js": "^0.11.2",
"multer": "^1.3.0",
"shortid": "^2.2.8"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.4.2",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"tinystub": "^1.0.1"
}
}