-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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": "@hackthenorth/mentorship-slackbot",
"version": "1.0.0",
"description": "Slackbot for mentorship at Hack the North",
"main": "src/server.ts",
"scripts": {
"start": "cross-env NODE_PATH=./src ts-node src/server.ts",
"lint": "eslint --ext .jsx,.js,.tsx,.ts src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackthenorth/mentorship-slackbot.git"
},
"author": "Hack the North",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackthenorth/mentorship-slackbot/issues"
},
"homepage": "https://github.com/hackthenorth/mentorship-slackbot#readme",
"dependencies": {
"@slack/events-api": "^2.3.0",
"@slack/interactive-messages": "^1.3.0",
"@slack/web-api": "^5.0.1",
"@types/express": "^4.17.1",
"@types/lowdb": "^1.0.9",
"@types/node": "^12.7.12",
"@types/request": "^2.48.3",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"body-parser": "^1.19.0",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"prettier": "^1.18.2",
"request": "^2.88.0",
"ts-node": "^8.4.1",
"tslib": "^1.10.0",
"typescript": "^3.6.4"
}
}