{ "name": "@brwong/$foldername", "author": "Brandon Wong", "version": "0.1.0", "scripts": { "test": "node test-build/main.js", "compile-prod": "cross-env NODE_ENV=production npm run compile", "compile": "npm run compile-src; npm run compile-test; npm run compile-frontend", "compile-both": "npm run compile-src; npm run compile-frontend", "compile-test": "babel test --out-dir test-build", "compile-src": "babel src --out-dir build", "compile-frontend": "webpack build/main.js build/bundle.js", "watch": "nodemon --watch src --watch test --watch styles -e js,css,html --exec \"npm run compile --silent\"", "testwatch": "nodemon --watch src --watch test --watch styles -e js,css,html --exec \"npm run compile --silent && npm test\"" }, "dependencies": { "babel-cli": "^6.23.0", "babel-core": "^6.23.1", "babel-loader": "^6.3.2", "babel-plugin-transform-object-rest-spread": "^6.23.0", "babel-plugin-transform-remove-console": "^6.8.0", "babel-plugin-transform-runtime": "^6.23.0", "babel-preset-latest": "^6.22.0", "babel-preset-react": "^6.23.0", "cross-env": "^3.1.4", "react": "^15.4.2", "react-dom": "^15.4.2", "react-redux": "^5.0.3", "redux": "^3.6.0", "redux-thunk": "^2.2.0", "webpack": "^1.14.0" }, "devDependencies": { "nodemon": "^1.11.0", "tape-promise": "^2.0.1", "tape": "^4.6.3" }, "private": true }