-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 910 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
{
"name": "brycelee",
"description": "An attempt at a fun test with nodejs, websockets and friends.",
"keywords": [
"game",
"websocket",
"js",
"javascript",
"brucelee",
"ninja",
"sumo"
],
"author": "Tuomas Nylund <tunylund@gmail>",
"contributors": [],
"licenses": [],
"dependencies": {
"node-static": "0.7.10",
"socket.io": "2.0.3"
},
"version": "0.7.0",
"private": true,
"engines": {
"node": ">= 0.9.3"
},
"scripts": {
"build": "npm install && docker build -t brycelee .",
"getlogin": "aws ecr get-login --no-include-email --region eu-west-1",
"tag": "docker tag brycelee:latest 219044013939.dkr.ecr.eu-west-1.amazonaws.com/brycelee:latest",
"push": "docker push 219044013939.dkr.ecr.eu-west-1.amazonaws.com/brycelee:latest",
"run": "docker run -p 8888:8888 --name brycelee brycelee",
"start": "node server.js"
}
}