forked from techinems/slack-poll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "slack-poll",
"version": "2.1.0",
"description": "Databaseless Slack Polling",
"main": "server.js",
"scripts": {
"prestart": "npm run compile",
"start": "node out/server.js",
"watch": "tsc --watch",
"compile": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/rpiambulance/slack-poll"
},
"author": "RPI Ambulance",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpiambulance/slack-poll/issues"
},
"homepage": "https://github.com/rpiambulance/slack-poll#readme",
"dependencies": {
"@sentry/node": "^5.7.1",
"@slack/interactive-messages": "^1.3.0",
"@slack/web-api": "^5.2.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/qs": "^6.5.3",
"body-parser": "^1.19.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"typescript": "^3.6.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1"
}
}