{
  "name": "team3",
  "private": true,
  "version": "1.0.0",
  "description": "Team 3 Hackathon",
  "main": "./server/index.js",
  "scripts": {
    "start": "npm run watch-build & npm run watch-server",
    "watch-server": "./node_modules/.bin/nodemon -e js,json --watch server --exec './node_modules/.bin/babel-node' server",
    "watch-build": "./node_modules/.bin/nodemon -e js,json --watch components --watch sass --exec 'npm run' build",
    "build": "npm run style && npm run bundle",
    "test": "jest",
    "style": "./node_modules/.bin/node-sass ./sass/main.scss ./public/css/main.css",
    "bundle": "./node_modules/.bin/browserify components/application.js -t babelify --outfile public/js/hackathon.js"
  },
  "jest": {
    "scriptPreprocessor": "./node_modules/babel-jest",
    "testFileExtensions": [
      "es6",
      "js"
    ],
    "moduleFileExtensions": [
      "js",
      "json",
      "es6"
    ],
    "unmockedModulePathPatterns": [
      "./node_modules/"
    ]
  },
  "author": "The Orchard",
  "devDependencies": {
    "babel": "^5.8.23",
    "babelify": "^6.3.0",
    "browserify": "^11.2.0",
    "cookie-parser": "^1.4.0",
    "node-sass": "^3.3.3",
    "nodemon": "^1.7.1",
    "react": "^0.14.2",
    "react-addons-test-utils": "^0.14.2",
    "react-dom": "^0.14.2",
    "superagent": "^1.4.0",
    "underscore": "^1.8.3"
  },
  "dependencies": {
    "babel-jest": "*",
    "classnames": "^2.2.0",
    "express": "^4.13.3",
    "history": "^1.12.5",
    "jest-cli": "*",
    "moment": "^2.10.6",
    "react": "^0.14.2",
    "react-router": "^1.0.0-rc3"
  }
}
