package.json 700 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "@brwong/$foldername",
  3. "author": "Brandon Wong",
  4. "version": "0.1.0",
  5. "main": "build/main.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "compile": "babel src --out-dir build && webpack build/main.js build/bundle.js",
  9. "watch": "nodemon --watch src --exec \"npm run compile\""
  10. },
  11. "dependencies": {
  12. "babel-cli": "^6.14.0",
  13. "babel-plugin-transform-remove-console": "^6.8.0",
  14. "babel-plugin-transform-runtime": "^6.15.0",
  15. "babel-preset-latest": "^6.16.0",
  16. "cross-env": "^1.0.8",
  17. "webpack": "^1.13.2"
  18. },
  19. "devDependencies": {
  20. "nodemon": "^1.9.1"
  21. },
  22. "directories": {
  23. "test": "test"
  24. },
  25. "private": true
  26. }