package.json 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "gurubot2",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "dev": "NODE_ENV=development NODE_PATH=./src node index.js",
  8. "dev:api": "NODE_ENV=development SKIP_APP=true NODE_PATH=./src nodemon -w ./src/server index.js",
  9. "build": "NODE_ENV=production webpack --mode=production",
  10. "start": "NODE_PATH=./src node index.js",
  11. "test": "NODE_ENV=test NODE_PATH=./src mocha --require @babel/register --require ignore-styles \"test/**/*.spec.js\"",
  12. "test-dev": "NODE_ENV=test NODE_PATH=./src mocha -w --bail --require @babel/register --require ignore-styles \"test/**/*.spec.js\"",
  13. "lint": "NODE_ENV=test eslint app src test"
  14. },
  15. "keywords": [],
  16. "author": "",
  17. "license": "ISC",
  18. "devDependencies": {
  19. "@babel/core": "^7.2.2",
  20. "@babel/plugin-proposal-class-properties": "^7.2.3",
  21. "@babel/plugin-proposal-decorators": "^7.2.3",
  22. "@babel/plugin-proposal-do-expressions": "^7.2.0",
  23. "@babel/plugin-proposal-export-default-from": "^7.2.0",
  24. "@babel/plugin-proposal-export-namespace-from": "^7.2.0",
  25. "@babel/plugin-proposal-function-bind": "^7.2.0",
  26. "@babel/plugin-proposal-function-sent": "^7.2.0",
  27. "@babel/plugin-proposal-json-strings": "^7.2.0",
  28. "@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
  29. "@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
  30. "@babel/plugin-proposal-numeric-separator": "^7.2.0",
  31. "@babel/plugin-proposal-object-rest-spread": "^7.2.0",
  32. "@babel/plugin-proposal-optional-chaining": "^7.2.0",
  33. "@babel/plugin-proposal-pipeline-operator": "^7.2.0",
  34. "@babel/plugin-proposal-throw-expressions": "^7.2.0",
  35. "@babel/plugin-syntax-dynamic-import": "^7.2.0",
  36. "@babel/plugin-syntax-import-meta": "^7.2.0",
  37. "@babel/preset-env": "^7.2.3",
  38. "@babel/preset-react": "^7.0.0",
  39. "@babel/register": "^7.0.0",
  40. "@epegzz/sass-vars-loader": "^4.0.0",
  41. "babel-eslint": "^10.0.1",
  42. "babel-loader": "^8.0.5",
  43. "chai": "^4.2.0",
  44. "css-loader": "^2.1.0",
  45. "dotenv-webpack": "^1.6.0",
  46. "enzyme": "^3.8.0",
  47. "enzyme-adapter-react-16": "^1.7.1",
  48. "eslint": "^5.12.0",
  49. "eslint-plugin-babel": "^5.3.0",
  50. "eslint-plugin-react": "^7.12.3",
  51. "html-loader": "^0.5.5",
  52. "html-webpack-plugin": "^3.2.0",
  53. "ignore-styles": "^5.0.1",
  54. "it-each": "^0.4.0",
  55. "jsdom": "^13.1.0",
  56. "mini-css-extract-plugin": "^0.5.0",
  57. "mongo-mocker": "0.0.8",
  58. "node-sass": "^4.11.0",
  59. "postcss-cssnext": "^3.1.0",
  60. "postcss-import": "^12.0.1",
  61. "postcss-loader": "^3.0.0",
  62. "react-hot-loader": "^4.6.3",
  63. "redux-logger": "^3.0.6",
  64. "redux-saga-test-plan": "^3.7.0",
  65. "sass-loader": "^7.1.0",
  66. "style-loader": "^0.23.1",
  67. "webpack": "^4.28.4",
  68. "webpack-cli": "^3.2.1",
  69. "webpack-dev-middleware": "^3.5.0",
  70. "webpack-hot-middleware": "^2.24.3"
  71. },
  72. "dependencies": {
  73. "@babel/polyfill": "^7.2.5",
  74. "@slack/client": "^4.8.0",
  75. "body-parser": "^1.18.3",
  76. "classnames": "^2.2.6",
  77. "create-reducer-object": "^1.1.0",
  78. "express": "^4.16.4",
  79. "express-async-errors": "^3.1.1",
  80. "express-basic-auth": "^1.1.6",
  81. "humanize-duration": "^3.17.0",
  82. "joi": "^14.3.1",
  83. "moment": "^2.23.0",
  84. "mongodb": "^3.1.10",
  85. "node-cron": "^2.0.3",
  86. "react": "^16.7.0",
  87. "react-dom": "^16.7.0",
  88. "react-redux": "^6.0.0",
  89. "redux": "^4.0.1",
  90. "redux-saga": "^0.16.2",
  91. "request-promise": "^4.2.2",
  92. "reselect": "^4.0.0",
  93. "soap": "^0.25.0",
  94. "uniqid": "^5.0.3",
  95. "winston": "^3.1.0"
  96. }
  97. }