-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.07 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
{
"name": "chatty",
"version": "0.0.1",
"description": "A simple chat room service based on SOCKET.IO.",
"main": "index.js",
"scripts": {
"clean": "pnpm recursive run cleanup",
"start": "pnpm recursive run dev",
"build:domain": "pnpm run build:domain",
"docker:build": "docker build -t dilemmatrainer .",
"docker:tag": "docker tag dilemmatrainer minvws/dilemmatrainer",
"docker:publish": "docker push minvws/dilemmatrainer",
"docker": "npm run docker:local && npm run docker:publish",
"docker:local": "npm run docker:build && npm run docker:tag",
"docker:run": "docker run --name lr -it -p 3030:3030 dilemmatrainer",
"docker:sh": "docker run -it dilemmatrainer sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TNOCS/chatty.git"
},
"keywords": [
"chat",
"socket.io",
"kafka"
],
"author": "Erik Vullings <[email protected]> (http://www.tno.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TNOCS/chatty/issues"
},
"homepage": "https://github.com/TNOCS/chatty#readme"
}