package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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": "cd server && npm start",
  10. "dev": "DEV=true SERVER_PORT=2610 SERVER_URL='http://localhost' webpack --watch",
  11. "build": "webpack --mode=production",
  12. "postbuild": "cordova prepare",
  13. "win-build": "cordova build windows --win",
  14. "preandroid-build": "set ORG_GRADLE_PROJECT_cdvMinSdkVersion=20 ",
  15. "android-build": "cordova build android",
  16. "browser": "cordova run browser",
  17. "win": "cordova run windows --win",
  18. "android": "cordova run android --emulator",
  19. "start": "npm-run-all --parallel server dev lint:watch",
  20. "start-client": "npm-run-all --parallel dev lint:watch",
  21. "lint": "esw webpack.config.* src --color",
  22. "lint:watch": "npm run lint -- --watch",
  23. "localtunnel": "lt --port 3000",
  24. "share": "npm-run-all --parallel open:src localtunnel",
  25. "test": "mocha --reporter progress \"src/**/*.test.js\"",
  26. "test:watch": "npm run test -- --watch",
  27. "clean": "rm -rf platforms plugins webpack www/dist www/index.html www/assets",
  28. "export": "export PATH=$(npm bin):$PATH"
  29. },
  30. "author": "JOJO",
  31. "license": "MIT",
  32. "dependencies": {
  33. "phaser": "^3.21.0",
  34. "socket.io-client": "^2.3.0",
  35. "cordova-android": "^8.1.0",
  36. "cordova-browser": "^6.0.0",
  37. "cordova-windows": "^7.0.1"
  38. },
  39. "devDependencies": {
  40. "@babel/cli": "7.6.2",
  41. "@babel/core": "^7.9.0",
  42. "@babel/plugin-proposal-object-rest-spread": "^7.9.0",
  43. "@babel/polyfill": "7.6.0",
  44. "@babel/preset-env": "7.6.2",
  45. "@babel/register": "^7.9.0",
  46. "are-you-es5": "^1.3.3",
  47. "babel-loader": "8.0.6",
  48. "browser-sync": "2.26.7",
  49. "browser-sync-webpack-plugin": "2.2.2",
  50. "chai": "4.2.0",
  51. "chalk": "2.4.2",
  52. "clean-webpack-plugin": "3.0.0",
  53. "copy-webpack-plugin": "^5.1.1",
  54. "cordova": "^9.0.0",
  55. "cordova-plugin-whitelist": "^1.3.4",
  56. "eslint": "6.4.0",
  57. "eslint-plugin-import": "2.18.2",
  58. "eslint-watch": "6.0.1",
  59. "express": "^4.17.1",
  60. "file-loader": "6.0.0",
  61. "html-loader": "^1.0.0",
  62. "html-webpack-plugin": "3.2.0",
  63. "mocha": "^7.1.1",
  64. "npm-run-all": "4.1.5",
  65. "open": "6.4.0",
  66. "path": "0.12.7",
  67. "raw-loader": "3.1.0",
  68. "readline-sync": "1.4.10",
  69. "webpack": "^4.42.0",
  70. "webpack-cli": "^3.3.11",
  71. "webpack-dev-middleware": "3.7.2",
  72. "webpack-md5-hash": "0.0.6"
  73. },
  74. "cordova": {
  75. "plugins": {
  76. "cordova-plugin-whitelist": {}
  77. },
  78. "platforms": [
  79. "browser",
  80. "windows",
  81. "android"
  82. ]
  83. }
  84. }