This repository has been archived by the owner on Oct 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "slacker-bot",
"version": "0.1.1",
"description": "The awesomest bot evar.",
"main": "src/index.js",
"scripts": {
"start": "babel-node src/index.js",
"watch": "nodemon --exec npm start",
"tunnel": "ssh -R bot-slacker:80:localhost:8765 serveo.net",
"test": "jest",
"precommit": "lint-staged"
},
"jest": {
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/*.{js,jsx}",
"!**/node_modules/**",
"!**/lib/**"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamogbz/bot-slacker.git"
},
"keywords": [
"slack",
"bot"
],
"author": "Emmanuel Ogbizi-Ugbe",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iamogbz/bot-slacker/issues"
},
"homepage": "https://github.com/iamogbz/bot-slacker#readme",
"engines": {
"node": ">=10.4.0",
"npm": ">=6.1.0"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"ajv": "^6.12.5",
"botbuilder-adapter-slack": "^1.0.13",
"botkit": "^4.10.0",
"dotenv": "^8.2.0",
"moment": "^2.29.1",
"mongodb": "^3.6.2",
"request": "^2.88.2",
"rxjs": "^6.6.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.5.2",
"lint-staged": "^10.4.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0"
}
}