-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "intellisound-server",
"version": "1.0.0",
"description": "server for intellisound",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest -i --coverage",
"lint": "eslint ./",
"start": "node index.js",
"dbon": "mkdir -p ./db && mongod --dbpath ./db",
"dboff": "killall mongod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IntelliSound/intelliSound-Server.git"
},
"author": "andrew bloom, david lindahl, jacob evans, nicholas carignan, shannon dillon",
"license": "MIT",
"bugs": {
"url": "https://github.com/IntelliSound/intelliSound-Server/issues"
},
"homepage": "https://github.com/IntelliSound/intelliSound-Server#readme",
"devDependencies": {
"artillery": "^1.6.0-12",
"aws-sdk-mock": "^1.7.0",
"eslint": "^4.17.0",
"faker": "^4.1.0",
"jest": "^22.1.4"
},
"dependencies": {
"aws-sdk": "^2.191.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"fs-extra": "^5.0.0",
"http-errors": "^1.6.2",
"jsonwebtoken": "^8.1.1",
"moment": "^2.21.0",
"mongoose": "^5.0.3",
"superagent": "^3.8.2",
"synaptic": "^1.1.4",
"winston": "^2.4.0"
}
}