package.json 2.0 KB

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