-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "slack-poker-planner",
"version": "2.0.3",
"description": "Poker planning app for slack",
"scripts": {
"build": "webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/slack-poker-planner.js",
"watch": "webpack --mode development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgurkaynak/slack-poker-planner.git"
},
"keywords": [
"slack",
"slack bot",
"planning poker",
"poker planner",
"scrum poker"
],
"author": "Deniz Gurkaynak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgurkaynak/slack-poker-planner/issues"
},
"homepage": "https://github.com/dgurkaynak/slack-poker-planner#readme",
"dependencies": {
"@slack/web-api": "^6.1.0",
"body-parser": "^1.20.3",
"chalk": "^4.1.2",
"countly-sdk-nodejs": "^20.4.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-handlebars": "^8.0.1",
"get-urls": "^10.0.1",
"html-entities": "^2.5.2",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"parse-duration": "^1.1.2",
"pretty-ms": "^7.0.1",
"quoted-string-space-split": "^1.1.1",
"redis": "^4.7.0",
"shortid": "^2.2.17",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/lodash": "^4.17.14",
"@types/node-fetch": "^2.5.7",
"@types/shortid": "2.2.0",
"@types/sqlite3": "^3.1.11",
"prettier": "2.7.1",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}