-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "leo-bot",
"version": "1.5.0",
"description": "A simple reminder Slack bot.",
"keywords": [
"bot",
"slack"
],
"homepage": "https://github.com/Narno/leo-bot",
"bugs": {
"url": "https://github.com/Narno/leo-bot/issues"
},
"license": "MIT",
"author": {
"name": "Arnaud Ligny",
"email": "[email protected]",
"url": "https://narno.dev"
},
"main": "worker.js",
"repository": {
"type": "git",
"url": "https://github.com/Narno/leo-bot.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -r dotenv/config ./src/worker.js --exec 'npm run lint && node'",
"start": "NODE_ENV=production node ./src/worker.js",
"lint": "./node_modules/eslint/bin/eslint.js ./src/"
},
"dependencies": {
"botkit": "^0.7.5",
"i18n": "^0.8.4",
"node-schedule": "^1.3.2",
"redis": "^2.8.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.4"
}
}