package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@catallaxy/microtables-server",
  3. "author": "Brandon Wong <wong.brandon@rcgt.com> (https://catallaxy.rcgt.com/)",
  4. "main": "build/service.js",
  5. "version": "0.1.0",
  6. "scripts": {
  7. "test": "node test-build/service.js",
  8. "compile-prod": "cross-env NODE_ENV=production npm run compile",
  9. "compile": "npm run compile-src && npm run compile-test",
  10. "compile-test": "babel test --out-dir test-build",
  11. "compile-src": "babel src --out-dir build",
  12. "watch": "nodemon --watch src --watch test --exec \"npm run compile --silent\"",
  13. "serverwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && node build/service.js\"",
  14. "testwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && npm test\""
  15. },
  16. "directories": {
  17. "test": "test"
  18. },
  19. "private": true,
  20. "dependencies": {
  21. "cross-env": "6.0.3",
  22. "express": "4.17.1"
  23. },
  24. "devDependencies": {
  25. "babel-cli": "6.26.0",
  26. "babel-plugin-transform-object-rest-spread": "6.26.0",
  27. "babel-plugin-transform-remove-console": "6.9.4",
  28. "babel-plugin-transform-runtime": "6.23.0",
  29. "babel-preset-env": "1.7.0",
  30. "isomorphic-fetch": "2.2.1",
  31. "nodemon": "1.19.4",
  32. "tape": "4.11.0",
  33. "tape-promise": "4.0.0"
  34. }
  35. }