package.json 2.4 KB

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