-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 982 Bytes
/
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
{
"name": "gather-town-x-slack",
"version": "1.0.0",
"main": "index.js",
"author": "Mike Eling <[email protected]>",
"license": "MIT",
"private": true,
"types": "./src/index.d.ts",
"engines": {
"node": "14.17.6"
},
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "yarn build && yarn start",
"watch": "nodemon ./src/index.ts",
"postinstall": "patch-package",
"deploy": "yarn build && flyctl deploy --local-only"
},
"dependencies": {
"@gathertown/gather-game-client": "^38.0.1",
"@gathertown/gather-game-common": "^30.0.0",
"@slack/bolt": "^3.10.0",
"dotenv": "^16.0.0",
"gathertown.js": "^1.0.0-alpha.1",
"moment": "^2.29.3",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"sharp": "^0.30.4",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/ws": "^8.5.3",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}