-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.13 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
{
"name": "tabletop",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"watch-js": "cmd /k watchify public/javascripts/main.js -o public/js/game.js -v -d",
"page-watch-js": "cmd /k watchify page/page.js -o public/js/page.js -v -d",
"editor-watch-js": "cmd /k watchify editor/editormain.js -o public/js/editor.js -v -d",
"compile-name-list": "node compilenames.js source=random_names.txt target=core/random_names.json",
"compile-adjectives-list": "node compilenames.js source=adjectives.txt target=core/adjectives.json",
"compile-word-list": "node compilecards.js source=wortliste.txt target=wordstack_content.json",
"compile-trashmail-list": "node compiletrashmails.js target=server/trashmails.json",
"test": "mocha",
"debug": "node --inspect --debug-brk ./bin/www",
"start redis-server": "start ./redis/redis-server",
"start redis-client": "start ./redis/redis-cli",
"start clean_allocated_guestnames service": "node nameallocationcleaner_service"
},
"devDependencies": {
"mocha": "*",
"watchify": "*"
},
"dependencies": {
"amqplib": "^0.5.1",
"babel-polyfill": "^6.23.0",
"bad-words": "^1.5.1",
"bcrypt": "^1.0.2",
"body-parser": "~1.16.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"connect-redis": "^3.3.0",
"cookie-parser": "~1.4.3",
"dateformat": "^2.0.0",
"debug": "~2.6.0",
"eventemitter3": "^2.0.3",
"express": "~4.14.1",
"express-session": "^1.15.3",
"glslify": "^6.0.2",
"helmet": "^3.6.1",
"matter-js": "^0.12.0",
"mongoose": "^4.10.6",
"mongoose-unique-validator": "^1.0.5",
"morgan": "~1.7.0",
"mq-pubsub": "^1.1.2",
"node-redis-streamify": "0.1.6",
"nodemailer": "^4.0.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport.socket.io": "0.0.0",
"pixi-display": "*",
"pixi-extra-filters": "*",
"pixi-filters": "^1.0.6",
"pixi.js": "*",
"pug": "^2.0.0-rc.2",
"redis": "^2.7.1",
"serve-favicon": "~2.3.2",
"socket.io": "*",
"socket.io-client": "*",
"uuid": "^3.0.1",
"xml2json": "^0.11.0"
}
}