package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "simple",
  3. "version": "1.0.0",
  4. "main": "index.js",
  5. "license": "MIT",
  6. "scripts": {
  7. "build": "cross-env NODE_ENV=production webpack",
  8. "start": "cross-env NODE_ENV=production nodemon -r source-map-support/register ./dist/index.js",
  9. "watch:src": "webpack --progress --watch",
  10. "watch:dist": "nodemon --watch config --watch dist --delay 2 -r source-map-support/register ./dist/index.js",
  11. "dev": "cross-env NODE_ENV=development npm-run-all --parallel watch:src watch:dist"
  12. },
  13. "devDependencies": {
  14. "@types/bluebird": "^3.5.32",
  15. "@types/config": "^0.0.36",
  16. "@types/debug": "^4.1.5",
  17. "@types/exceljs": "^1.3.0",
  18. "@types/got": "^9.6.11",
  19. "@types/ioredis": "^4.17.3",
  20. "@types/jsonwebtoken": "^8.5.0",
  21. "@types/koa": "^2.11.4",
  22. "@types/koa-bodyparser": "^4.3.0",
  23. "@types/koa-json-error": "^3.1.2",
  24. "@types/koa-router": "^7.4.1",
  25. "@types/koa__cors": "^3.0.2",
  26. "@types/lodash": "^4.14.159",
  27. "@types/mongoose": "^5.7.36",
  28. "@types/mysql": "^2.15.15",
  29. "@types/node": "^14.14.2",
  30. "@types/random-string": "^0.0.28",
  31. "@types/randomatic": "^3.1.0",
  32. "@types/sequelize": "^4.28.9",
  33. "@types/tough-cookie": "^4.0.0",
  34. "@types/validator": "^13.1.0",
  35. "@typescript-eslint/eslint-plugin": "^3.9.1",
  36. "@typescript-eslint/parser": "^3.9.1",
  37. "eslint": "^7.7.0",
  38. "eslint-config-standard": "^14.1.1",
  39. "eslint-plugin-import": "^2.22.0",
  40. "eslint-plugin-node": "^11.1.0",
  41. "eslint-plugin-promise": "^4.2.1",
  42. "eslint-plugin-standard": "^4.0.1",
  43. "ts-loader": "^8.0.2",
  44. "ts-node": "^9.0.0",
  45. "typescript": "^4.0.2"
  46. },
  47. "dependencies": {
  48. "@koa/cors": "^3.1.0",
  49. "cache-manager-ioredis": "^2.1.0",
  50. "camelcase": "^6.0.0",
  51. "clean-webpack-plugin": "^3.0.0",
  52. "config": "^3.3.1",
  53. "content-disposition": "^0.5.3",
  54. "cross-env": "^7.0.2",
  55. "debug": "^4.2.0",
  56. "exceljs": "^4.2.0",
  57. "glob": "^7.1.6",
  58. "got": "^11.8.0",
  59. "ioredis": "^4.17.3",
  60. "jsonwebtoken": "^8.5.1",
  61. "koa": "^2.13.0",
  62. "koa-body": "^4.2.0",
  63. "koa-bodyparser": "^4.3.0",
  64. "koa-json-error": "^3.1.2",
  65. "koa-router": "^9.4.0",
  66. "lodash": "^4.17.20",
  67. "moment": "^2.27.0",
  68. "mongoose": "^5.10.0",
  69. "mongoose-long": "^0.3.1",
  70. "mysql2": "^2.2.5",
  71. "nodemon": "^2.0.6",
  72. "npm-run-all": "^4.1.5",
  73. "random-string": "^0.2.0",
  74. "randomatic": "^3.1.1",
  75. "sequelize": "^6.3.5",
  76. "source-map-support": "^0.5.19",
  77. "webpack": "^5.3.0",
  78. "webpack-cli": "^4.1.0",
  79. "webpack-node-externals": "^2.5.2",
  80. "xlsx": "^0.16.8"
  81. }
  82. }