Skip to content

Instantly share code, notes, and snippets.

@wordyallen
Created April 22, 2016 01:21
Show Gist options
  • Save wordyallen/34da096784f931287e00b3e5d0f08da1 to your computer and use it in GitHub Desktop.
Save wordyallen/34da096784f931287e00b3e5d0f08da1 to your computer and use it in GitHub Desktop.
//Server
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive",
"watch": "npm run test -- --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chai-immutable": "^1.5.4",
"mocha": "^2.4.5"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"firebase": "^2.4.2",
"immutable": "^3.8.1",
"redux": "^3.5.1",
"socket.io": "^1.4.5"
}
}
// CLIENT
{
"name": "web_client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --history-api-fallback"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"firebase": "^2.4.2",
"immutable": "^3.7.6",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment