forked from jypark97/botScheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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": "botscheduler",
"version": "1.0.0",
"description": "creating a slackbot that makes event on google calendar",
"main": "index.js",
"scripts": {
"babel": "mkdir -p build && babel server.js -o build/main.bundle.js",
"lint": "eslint --fix *.js",
"start": "babel-node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jypark97/botScheduler.git"
},
"author": "jypark97",
"license": "ISC",
"bugs": {
"url": "https://github.com/jypark97/botScheduler/issues"
},
"homepage": "https://github.com/jypark97/botScheduler#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.2.0"
},
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"dependencies": {
"@slack/client": "^4.3.1",
"body-parser": "^1.18.3",
"dialogflow": "^0.6.0",
"express": "^4.16.3",
"fs": "0.0.1-security",
"googleapis": "^27.0.0",
"mongoose": "^5.2.4",
"node-fetch": "^2.2.0",
"readline": "^1.3.0",
"request": "^2.87.0",
"slackbots": "^1.1.0"
}
}