-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "tic-tac-server",
"version": "1.0.0",
"description": "A NodeJS WebSocket Tic Tac Toe Server",
"main": "index.mjs",
"engines": {
"node": "8.11.1"
},
"scripts": {
"heroku:logs": "heroku logs --tail",
"heroku:open": "heroku open",
"heroku:push": "git push heroku master",
"heroku:changes": "git add . && git commit --amend && git push -f heroku master",
"start": "node --experimental-modules index.mjs",
"test": "node --experimental-modules test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supernova-at/tic-tac-server.git"
},
"keywords": [
"websockets"
],
"author": "supernova-at (Andy Terranova)",
"license": "ISC",
"bugs": {
"url": "https://github.com/supernova-at/tic-tac-server/issues"
},
"homepage": "https://github.com/supernova-at/tic-tac-server#readme",
"dependencies": {
"bufferutil": "4.0.0",
"express": "4.16.3",
"immutable": "3.8.2",
"node-uuid": "1.4.8",
"utf-8-validate": "5.0.1",
"ws": "6.0.0"
}
}