package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. "start": "NODE_PATH=./src node index.js",
  10. "test": "NODE_ENV=test NODE_PATH=./src mocha --require @babel/register --require ignore-styles \"test/**/*.spec.js\"",
  11. "test-dev": "NODE_ENV=test NODE_PATH=./src mocha -w --bail --require @babel/register --require ignore-styles \"test/**/*.spec.js\"",
  12. "lint": "NODE_ENV=test eslint app src test"
  13. },
  14. "keywords": [],
  15. "author": "",
  16. "license": "ISC",
  17. "devDependencies": {
  18. "@babel/core": "^7.2.2",
  19. "@babel/plugin-proposal-class-properties": "^7.2.3",
  20. "@babel/plugin-proposal-decorators": "^7.2.3",
  21. "@babel/plugin-proposal-do-expressions": "^7.2.0",
  22. "@babel/plugin-proposal-export-default-from": "^7.2.0",
  23. "@babel/plugin-proposal-export-namespace-from": "^7.2.0",
  24. "@babel/plugin-proposal-function-bind": "^7.2.0",
  25. "@babel/plugin-proposal-function-sent": "^7.2.0",
  26. "@babel/plugin-proposal-json-strings": "^7.2.0",
  27. "@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
  28. "@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
  29. "@babel/plugin-proposal-numeric-separator": "^7.2.0",
  30. "@babel/plugin-proposal-object-rest-spread": "^7.2.0",
  31. "@babel/plugin-proposal-optional-chaining": "^7.2.0",
  32. "@babel/plugin-proposal-pipeline-operator": "^7.2.0",
  33. "@babel/plugin-proposal-throw-expressions": "^7.2.0",
  34. "@babel/plugin-syntax-dynamic-import": "^7.2.0",
  35. "@babel/plugin-syntax-import-meta": "^7.2.0",
  36. "@babel/preset-env": "^7.2.3",
  37. "@babel/preset-react": "^7.0.0",
  38. "@babel/register": "^7.0.0",
  39. "@epegzz/sass-vars-loader": "^4.0.0",
  40. "babel-eslint": "^10.0.1",
  41. "babel-loader": "^8.0.5",
  42. "chai": "^4.2.0",
  43. "css-loader": "^2.1.0",
  44. "dotenv-webpack": "^1.6.0",
  45. "enzyme": "^3.8.0",
  46. "enzyme-adapter-react-16": "^1.7.1",
  47. "eslint": "^5.12.0",
  48. "eslint-plugin-babel": "^5.3.0",
  49. "eslint-plugin-react": "^7.12.3",
  50. "html-loader": "^0.5.5",
  51. "html-webpack-plugin": "^3.2.0",
  52. "ignore-styles": "^5.0.1",
  53. "it-each": "^0.4.0",
  54. "jsdom": "^13.1.0",
  55. "mini-css-extract-plugin": "^0.5.0",
  56. "mongo-mocker": "0.0.8",
  57. "node-sass": "^4.11.0",
  58. "postcss-cssnext": "^3.1.0",
  59. "postcss-import": "^12.0.1",
  60. "postcss-loader": "^3.0.0",
  61. "react-hot-loader": "^4.6.3",
  62. "sass-loader": "^7.1.0",
  63. "style-loader": "^0.23.1",
  64. "webpack": "^4.28.4",
  65. "webpack-dev-middleware": "^3.5.0",
  66. "webpack-hot-middleware": "^2.24.3"
  67. },
  68. "dependencies": {
  69. "@babel/polyfill": "^7.2.5",
  70. "express": "^4.16.4",
  71. "joi": "^14.3.1",
  72. "mongodb": "^3.1.10",
  73. "react": "^16.7.0",
  74. "react-dom": "^16.7.0",
  75. "react-redux": "^6.0.0",
  76. "winston": "^3.1.0"
  77. }
  78. }