32 lines
837 B
JSON
32 lines
837 B
JSON
{
|
|
"name": "notify",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"scripts": {
|
|
"dev": "node serverdev.js",
|
|
"build": "webpack --config ./webpack.production.config.js --progress --profile --colors",
|
|
"start": "npm run build && node server.js",
|
|
"lint": "eslint src"
|
|
},
|
|
"author": "Tanner Collin (http://github.com/tannercollin)",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"babel-core": "^5.4.7",
|
|
"babel-eslint": "^3.1.9",
|
|
"babel-loader": "^5.1.2",
|
|
"eslint-plugin-react": "^2.3.0",
|
|
"react-hot-loader": "^1.2.7",
|
|
"webpack": "^1.9.6",
|
|
"webpack-dev-server": "^1.8.2"
|
|
},
|
|
"dependencies": {
|
|
"body-parser": "^1.15.2",
|
|
"freezer-js": "^0.6.0",
|
|
"react": "^0.13.0",
|
|
"react-router": "^0.13.3",
|
|
"shortid": "^2.2.6",
|
|
"socket.io": "^1.7.2",
|
|
"socket.io-client": "^1.7.2"
|
|
}
|
|
}
|