-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.46 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
44
45
46
47
48
{
"name": "srt-web-client",
"version": "0.0.1",
"description": "An MVP implementation of a web-based client for the Space Rings Thing game.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-gamedev/srt-web-client.git"
},
"keywords": [
"game",
"phaser"
],
"author": "Jared Sprague",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/redhat-gamedev/srt-web-client/issues"
},
"homepage": "https://github.com/redhat-gamedev/srt-web-client#readme",
"scripts": {
"start": "DEBUG=* node bin/www",
"test": "npm run eslint",
"dev": "browser-sync start --server --serveStatic ./src --files './src/**/*.*' --directory --no-notify",
"eslint": "eslint ./src --ext .js",
"postinstall": "bash copyreqs.sh"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-session": "^1.17.2",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"keycloak-connect": "^14.0.0",
"lodash": "^4.17.20",
"morgan": "~1.9.1",
"phaser": "~3.52.0",
"protobufjs": "^6.10.2",
"rhea": "^2.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^32.0.0"
}
}