-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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": "hexaworld-server",
"version": "1.0.0",
"description": "A server that serves instances of Hexaworld",
"main": "index.js",
"scripts": {
"start": "npm run watch & npm run server",
"server": "nodemon server.js",
"watch": "watchify index.js -o bundle.js",
"bundle": "browserify index.js -o bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexaworld/hexaworld-server.git"
},
"keywords": [
"hexaworld",
"server"
],
"author": "Andrew Osheroff",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexaworld/hexaworld-server/issues"
},
"homepage": "https://github.com/hexaworld/hexaworld-server#readme",
"dependencies": {
"JSONStream": "^1.0.7",
"async": "^1.5.0",
"body-parser": "^1.14.1",
"browser-request": "^0.3.3",
"connect-mongo": "^0.8.2",
"express": "^4.13.3",
"express-session": "^1.12.1",
"express-socket.io-session": "^1.3.1",
"lodash": "^3.10.1",
"mongoose": "^4.2.9",
"request": "^2.67.0",
"shortid": "^2.2.4",
"socket.io": "^1.3.7",
"url-join": "0.0.1"
},
"devDependencies": {
"browserify": "^12.0.1",
"nodemon": "^1.8.1",
"watchify": "^3.6.1"
}
}