package.json 2.1 KB

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