-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 956 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
37
38
39
40
41
{
"name": "scramble-vox",
"version": "1.0.0",
"description": "audio file transformer",
"main": "index.js",
"engine": {
"node": "8.9.3"
},
"scripts": {
"test": "jest -i --coverage",
"lint": "eslint ./",
"start": "node index.js",
"dbon": "mkdir -p ./db && mongod --dbpath ./db",
"dboff": "killall mongod"
},
"author": "Andrew Bloom, David Lindahl, Jeff Kusowski, Shannon Dillon",
"license": "MIT",
"bin": {
"scramblevox": "./cli.js"
},
"preferGlobal": true,
"devDependencies": {
"aws-sdk-mock": "^1.7.0",
"eslint": "^4.14.0",
"faker": "^4.1.0",
"jest": "^22.0.4",
"superagent": "^3.8.2"
},
"dependencies": {
"aws-sdk": "^2.176.0",
"bcrypt": "^1.0.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"fs-extra": "^5.0.0",
"http-errors": "^1.6.2",
"jsonwebtoken": "^8.1.0",
"mongoose": "^5.0.0-rc0",
"multer": "^1.3.0",
"winston": "^2.4.0"
}
}