|
@@ -0,0 +1,39 @@
|
|
|
|
+{
|
|
|
|
+ "name": "@brwong/$foldername",
|
|
|
|
+ "author": "Brandon Wong",
|
|
|
|
+ "version": "0.1.0",
|
|
|
|
+ "scripts": {
|
|
|
|
+ "test": "echo \"Error: no test specified\" && exit 1",
|
|
|
|
+ "postinstall": "npm run compile",
|
|
|
|
+ "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 --module-bind 'js=babel-loader'",
|
|
|
|
+ "watch": "nodemon --watch src --watch test --watch styles -e js,css,html --exec \"npm run compile --silent\""
|
|
|
|
+ },
|
|
|
|
+ "dependencies": {
|
|
|
|
+ "babel-cli": "^6.18.0",
|
|
|
|
+ "babel-core": "^6.18.2",
|
|
|
|
+ "babel-loader": "^6.2.8",
|
|
|
|
+ "babel-plugin-transform-object-rest-spread": "^6.19.0",
|
|
|
|
+ "babel-plugin-transform-remove-console": "^6.8.0",
|
|
|
|
+ "babel-plugin-transform-runtime": "^6.15.0",
|
|
|
|
+ "babel-preset-latest": "^6.16.0",
|
|
|
|
+ "babel-preset-react": "^6.16.0",
|
|
|
|
+ "cross-env": "^1.0.8",
|
|
|
|
+ "react": "^15.4.1",
|
|
|
|
+ "react-dom": "^15.4.1",
|
|
|
|
+ "react-redux": "^4.4.6",
|
|
|
|
+ "redux": "^3.6.0",
|
|
|
|
+ "redux-thunk": "^2.1.0",
|
|
|
|
+ "webpack": "^1.13.3"
|
|
|
|
+ },
|
|
|
|
+ "devDependencies": {
|
|
|
|
+ "nodemon": "^1.9.1",
|
|
|
|
+ "tape-promise": "^2.0.0",
|
|
|
|
+ "tape": "^4.5.1"
|
|
|
|
+ },
|
|
|
|
+ "private": true
|
|
|
|
+}
|