package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "name": "artipub",
  3. "version": "0.1.3",
  4. "description": "Article publishing platform that automatically distributes your articles to various media channels",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "node cli.js start",
  8. "start:frontend": "umi dev",
  9. "start:backend": "node server.js",
  10. "build": "umi build",
  11. "test": "echo \"Error: no test specified\" && exit 1"
  12. },
  13. "bin": {
  14. "artipub": "./cli.js"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/crawlab-team/artipub.git"
  19. },
  20. "keywords": [
  21. "nodejs",
  22. "publish",
  23. "article",
  24. "media",
  25. "write",
  26. "post",
  27. "puppeteer"
  28. ],
  29. "author": "Marvin Zhang",
  30. "license": "BSD-3-Clause",
  31. "bugs": {
  32. "url": "https://github.com/crawlab-team/artipub/issues"
  33. },
  34. "homepage": "https://github.com/crawlab-team/artipub#readme",
  35. "dependencies": {
  36. "@ant-design/pro-layout": "^4.5.9",
  37. "@antv/data-set": "^0.10.2",
  38. "@types/codemirror": "0.0.76",
  39. "@types/showdown": "^1.9.3",
  40. "antd": "^3.20.0",
  41. "async-lock": "^1.2.2",
  42. "body-parser": "^1.19.0",
  43. "caporal": "^1.3.0",
  44. "classnames": "^2.2.6",
  45. "clipboardy": "^2.1.0",
  46. "codemirror": "^5.48.2",
  47. "cors": "^2.8.5",
  48. "cron": "^1.7.1",
  49. "dva": "^2.4.1",
  50. "express": "^4.17.1",
  51. "github-markdown-css": "^3.0.1",
  52. "hash.js": "^1.1.7",
  53. "lodash": "^4.17.11",
  54. "log4js": "^5.1.0",
  55. "markdown-it": "^10.0.0",
  56. "moment": "^2.24.0",
  57. "mongoose": "^5.6.12",
  58. "morgan": "^1.9.1",
  59. "numeral": "^2.0.6",
  60. "nzh": "^1.0.4",
  61. "omit.js": "^1.0.2",
  62. "path-to-regexp": "^3.0.0",
  63. "puppeteer-chromium-resolver": "^2.0.1",
  64. "qs": "^6.7.0",
  65. "react": "^16.8.6",
  66. "react-ace": "^7.0.2",
  67. "react-codemirror2": "^6.0.0",
  68. "react-copy-to-clipboard": "^5.0.1",
  69. "react-document-title": "^2.0.3",
  70. "react-dom": "^16.8.6",
  71. "react-markdown-editor-lite": "^0.4.3",
  72. "react-showdown": "^1.6.0",
  73. "redux": "^4.0.1",
  74. "showdown": "^1.9.0",
  75. "umi": "^2.8.7",
  76. "umi-plugin-pro-block": "^1.3.2",
  77. "umi-plugin-react": "^1.9.5",
  78. "umi-request": "^1.0.8"
  79. },
  80. "devDependencies": {
  81. "@ant-design/colors": "^3.1.0",
  82. "@ant-design/pro-cli": "^1.0.0",
  83. "@types/classnames": "^2.2.7",
  84. "@types/express": "^4.17.0",
  85. "@types/history": "^4.7.2",
  86. "@types/jest": "^24.0.13",
  87. "@types/lodash": "^4.14.133",
  88. "@types/qs": "^6.5.3",
  89. "@types/react": "^16.8.19",
  90. "@types/react-document-title": "^2.0.3",
  91. "@types/react-dom": "^16.8.4",
  92. "@umijs/fabric": "^1.1.0",
  93. "chalk": "^2.4.2",
  94. "check-prettier": "^1.0.3",
  95. "cross-env": "^5.2.0",
  96. "cross-port-killer": "^1.1.1",
  97. "enzyme": "^3.9.0",
  98. "eslint": "^5.16.0",
  99. "express": "^4.17.1",
  100. "gh-pages": "^2.0.1",
  101. "husky": "^3.0.0",
  102. "import-sort-cli": "^6.0.0",
  103. "import-sort-parser-babylon": "^6.0.0",
  104. "import-sort-parser-typescript": "^6.0.0",
  105. "import-sort-style-module": "^6.0.0",
  106. "jest-puppeteer": "^4.2.0",
  107. "lint-staged": "^9.0.0",
  108. "mockjs": "^1.0.1-beta3",
  109. "netlify-lambda": "^1.4.13",
  110. "node-fetch": "^2.6.0",
  111. "prettier": "^1.17.1",
  112. "pro-download": "1.0.1",
  113. "serverless-http": "^2.0.2",
  114. "slash2": "^2.0.0",
  115. "stylelint": "^10.1.0",
  116. "umi-plugin-ga": "^1.1.3",
  117. "umi-plugin-pro": "^1.0.2",
  118. "umi-types": "^0.3.8",
  119. "webpack-theme-color-replacer": "^1.2.15"
  120. }
  121. }