-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1013 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
{
"name": "api-server",
"version": "1.0.0",
"description": "API Server that listens for events emmited from the bots, then calls the specified api",
"main": "index.js",
"scripts": {
"jsdoc": "jsdoc -c ./docs/config/jsdoc.config.json",
"test": "jest --coverage --verbose",
"lint": "eslint '**/*.js'",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slack-lackey/api-server.git"
},
"author": "Chris Merritt, Billy Bunn, Vanessa Wei, Erin Trainor",
"license": "MIT",
"bugs": {
"url": "https://github.com/slack-lackey/api-server/issues"
},
"homepage": "https://github.com/slack-lackey/api-server#readme",
"dependencies": {
"@nmq/q": "^1.0.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"eslint": "^5.16.0",
"express": "^4.16.4",
"jest": "^24.7.1",
"moment": "^2.24.0",
"mongoose": "^5.5.2",
"mongoose-schema-jsonschema": "^1.2.1",
"morgan": "^1.9.1",
"superagent": "^5.0.2"
}
}