package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "twelve-heroes",
  3. "version": "1.0.0",
  4. "description": "twelve heroes game",
  5. "keywords": [
  6. "ecosystem:cordova"
  7. ],
  8. "scripts": {
  9. "server": "babel-node server/main.js",
  10. "dev": "webpack --watch",
  11. "precor-build": "cordova prepare",
  12. "cor-build": "CORDOVA=true cordova build -- --webpackConfig webpack.config.js",
  13. "cordova": "CORDOVA=true cordova run -- -w webpack.config.js",
  14. "start": "npm-run-all --parallel server dev lint:watch",
  15. "start-client": "npm-run-all --parallel dev lint:watch",
  16. "lint": "esw webpack.config.* src --color",
  17. "lint:watch": "npm run lint -- --watch",
  18. "localtunnel": "lt --port 3000",
  19. "share": "npm-run-all --parallel open:src localtunnel",
  20. "test": "mocha --reporter progress \"src/**/*.test.js\"",
  21. "test:watch": "npm run test -- --watch",
  22. "clean": "git clean -fdx -e node_modules"
  23. },
  24. "author": "JOJO",
  25. "license": "MIT",
  26. "dependencies": {
  27. "@babel/node": "7.6.2",
  28. "@babel/polyfill": "7.6.0",
  29. "express": "^4.17.1",
  30. "phaser": "3.19.0"
  31. },
  32. "devDependencies": {
  33. "@babel/cli": "7.6.2",
  34. "@babel/core": "^7.6.2",
  35. "@babel/plugin-proposal-object-rest-spread": "^7.6.2",
  36. "@babel/preset-env": "7.6.2",
  37. "@babel/register": "^7.6.2",
  38. "babel-loader": "8.0.6",
  39. "browser-sync": "2.26.7",
  40. "browser-sync-webpack-plugin": "2.2.2",
  41. "chai": "4.2.0",
  42. "chalk": "2.4.2",
  43. "clean-webpack-plugin": "3.0.0",
  44. "copy-webpack-plugin": "^5.1.0",
  45. "cordova-browser": "^6.0.0",
  46. "cordova-plugin-webpack": "^0.4.7",
  47. "cordova-plugin-whitelist": "^1.3.4",
  48. "eslint": "6.4.0",
  49. "eslint-plugin-import": "2.18.2",
  50. "eslint-watch": "6.0.1",
  51. "file-loader": "4.2.0",
  52. "html-webpack-plugin": "3.2.0",
  53. "mocha": "6.2.0",
  54. "npm-run-all": "4.1.5",
  55. "open": "6.4.0",
  56. "path": "0.12.7",
  57. "raw-loader": "3.1.0",
  58. "readline-sync": "1.4.10",
  59. "socket.io": "^2.3.0",
  60. "socket.io-client": "^2.3.0",
  61. "webpack": "^4.41.0",
  62. "webpack-cli": "^3.3.9",
  63. "webpack-dev-middleware": "3.7.2",
  64. "webpack-md5-hash": "0.0.6"
  65. },
  66. "cordova": {
  67. "plugins": {
  68. "cordova-plugin-whitelist": {},
  69. "cordova-plugin-webpack": {}
  70. },
  71. "platforms": [
  72. "browser"
  73. ]
  74. }
  75. }