-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.58 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": "cardboardez",
"description": "CardboardEZ is a tool that helps simulate various tabletop games.",
"author": "Eugene Zaretskiy",
"version": "0.0.1",
"scripts": {
"start": "npm run build && node server.js",
"build:games": "node gameModuleBuilder.js",
"build:games:symlinks": "node gameModuleBuilder.js --useSymlinks",
"build:client": "browserify -r react -r react-dom -r material-ui -t babelify -t browserify-data client/main.js | uglifyjs - -c -m -o public/assets/scripts/client.js",
"build": "npm run build:games && npm run build:client",
"watchify": "watchify --debug -r react -r react-dom -r material-ui -t babelify -t browserify-data client/main.js -o public/assets/scripts/client.js",
"nodemon": "nodemon --harmony-async-await --debug --ignore client/ --ignore public/ --ignore game/*/component/* server.js",
"test": "tape -r babel-register \"test/unit/**/*.js\""
},
"dependencies": {
"autobind-decorator": "^1.3.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"babelify": "^7.3.0",
"body-parser": "^1.10.2",
"browserify": "^13.1.0",
"browserify-data": "^0.2.0",
"cardboardez-game-nicknames": "^0.0.3",
"cardboardez-game-summit": "^0.0.5",
"cardboardez-game-trixit": "^0.0.5",
"compression": "^1.6.2",
"config": "^1.10.0",
"feathers": "^2.0.2",
"feathers-authentication": "^0.7.10",
"feathers-errors": "^2.4.0",
"feathers-hooks": "^1.5.7",
"feathers-rest": "^1.5.0",
"feathers-rethinkdb": "^0.2.3",
"feathers-socketio": "^1.4.1",
"glob": "^7.1.1",
"hammerjs": "^2.0.8",
"jsonfile": "^2.4.0",
"lodash": "^4.16.2",
"material-ui": "^0.16.7",
"passport-facebook": "^1.0.3",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^1.0.0",
"passport-vimeo-oauth2": "0.0.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-saga": "^0.11.1",
"reselect": "^2.5.4",
"rethinkdbdash": "^2.3.23",
"scriptloader": "^1.1.2",
"socket.io-client": "^1.4.8",
"uglify-js": "^2.7.3"
},
"devDependencies": {
"livereactload": "^3.1.1",
"nodemon": "^1.10.2",
"react-proxy": "^1.1.8",
"tape": "^4.6.0",
"watchify": "^3.7.0"
}
}