-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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.3.2",
"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": "^6.12.0",
"@slack/interactive-messages": "^2.0.2",
"@slack/web-api": "^6.4.0",
"@types/express": "^4.17.13",
"@types/node": "^16.7.0",
"@types/qs": "^6.9.7",
"body-parser": "^1.20.3",
"dotenv": "^10.0.0",
"express": "^4.21.2",
"typescript": "^4.4.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0"
}
}