forked from eleksi/office-slack-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "office-slack-bot",
"version": "0.1.0",
"description": "",
"engines": {
"node": ">=7.6.0"
},
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"test": "mocha -t 100000 test/*.test.js",
"test:g": "mocha -t 100000 -g",
"console": "node src/consoleApp.js",
"create_token": "node helpers/googleTokenCreator.js",
"eslint": "eslint ./src ./test ./helpers"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/translate": "^1.1.0",
"bluebird": "^3.4.7",
"botkit": "^0.4.2",
"cheerio": "^1.0.0-rc.2",
"google-auth-library": "^0.10.0",
"googleapis": "^16.1.0",
"moment": "^2.18.1",
"mongodb": "^3.3.0-beta2",
"node-fetch": "^1.7.3",
"nodemailer": "^4.1.0",
"superagent": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.0",
"prettier": "^1.16.4",
"mocha": "^3.2.0"
}
}