-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·39 lines (39 loc) · 899 Bytes
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
{
"name": "henrybot",
"version": "1.0.0",
"description": "Finnish language detection bot.",
"keywords": [
"Slack",
"bot"
],
"repository": {
"type": "git",
"url": "https://github.com/tvtri96/henrybot"
},
"scripts": {
"build": "babel index.js -o server.js",
"prestart": "npm run build",
"start": "node server.js",
"dev": "nodemon index.js",
"deploy": "npm run build && eb deploy"
},
"author": {
"name": "Tri Tran",
"email": "tvtri96@gmail.com"
},
"license": "MIT",
"dependencies": {
"@slack/client": "^3.8.1",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"franc": "^4.0.0",
"google-translate-api": "^2.3.0",
"striptags": "^3.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"nodemon": "^1.18.4"
}
}