package.json 2.7 KB

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