-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
71 lines (71 loc) · 1.97 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "sprocketleague",
"version": "2.0.2",
"engines": {
"node": ">=8.0.0"
},
"description": "A sample A-Frame multiplayer with networked physics",
"main": "src/main.js",
"dependencies": {
"@babel/node": "^7.2.2",
"aframe": "^0.9.2",
"aframe-cubemap-component": "^0.1.1",
"babel-loader": "^8.0.5",
"breakpoint-sass": "^2.7.1",
"browserify": "^13.0.1",
"cors": "^2.8.5",
"css-loader": "^2.1.1",
"eventemitter3": "^1.2.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"lance-gg": "^4.0.6",
"lance-pro": "^0.0.7",
"node-sass": "^4.13.1",
"null-loader": "^0.1.1",
"query-string": "^4.2.3",
"raw-loader": "^0.5.1",
"sass-loader": "^4.1.1",
"shader-particle-engine": "^1.0.6",
"socket.io": "^2.4.0",
"socket.io-client": "^2.1.1",
"style-loader": "^0.13.1",
"three": "^0.125.0",
"tween": "^0.9.0",
"url-loader": "^2.0.0",
"webpack": "^3.8.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"eslint": "^4.18.2",
"eslint-config-google": "^0.7.1",
"watchify": "^3.9.0"
},
"scripts": {
"start": "node dist-server/main.js",
"start-debug": "node --inspect-brk dist-server/main.js",
"start-dev": "nodemon dist-server/main.js",
"postinstall": "webpack && babel src --source-maps --out-dir dist-server",
"build": "webpack && babel src --source-maps --out-dir dist-server",
"stats": "webpack --env production --profile --json > stats.json",
"dev": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lance-gg/sprocketleague.git"
},
"keywords": [
"game",
"lance",
"lance-gg",
"websockets"
],
"author": "Gary Weiss",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lance-gg/sprocketleague/issues"
},
"homepage": "https://github.com/lance-gg/sprocketleague#readme"
}