package.json 2.9 KB

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