package.json 2.6 KB

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