-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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": "flaviobot",
"version": "2.0.0",
"description": "Flaviobot is a bot that allows to play the popular Italian TV game \\\"La Ghigliottina\\\" with friends on Slack.",
"main": "dist/src/app.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/src/app.js",
"container-start": "node dist/app.js",
"dev": "yarn build && yarn start",
"test": "yarn jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoniocosentino/flaviobot.git"
},
"keywords": [
"flaviobot",
"ghigliottina",
"eredità"
],
"author": "Antonio Cosentino",
"license": "MIT",
"bugs": {
"url": "https://github.com/antoniocosentino/flaviobot/issues"
},
"homepage": "https://github.com/antoniocosentino/flaviobot#readme",
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.8.3",
"jest": "^29.3.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@slack/bolt": "^3.12.1",
"@types/node-fetch": "^2.6.2",
"lodash": "^4.17.21",
"node-fetch": "2.6.1",
"winston": "^3.8.2"
}
}