| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {
- "name": "gurubot2",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "dev": "NODE_ENV=development NODE_PATH=./src node index.js",
- "dev:api": "NODE_ENV=development SKIP_APP=true NODE_PATH=./src nodemon -w ./src/server index.js",
- "build": "NODE_ENV=production webpack --mode=production",
- "start": "NODE_PATH=./src node index.js",
- "test": "NODE_ENV=test NODE_PATH=./src mocha --require @babel/register --require ignore-styles \"test/**/*.spec.js\"",
- "test-dev": "NODE_ENV=test NODE_PATH=./src mocha -w --bail --require @babel/register --require ignore-styles \"test/**/*.spec.js\"",
- "lint": "NODE_ENV=test eslint app src test"
- },
- "keywords": [],
- "author": "",
- "license": "ISC",
- "devDependencies": {
- "@babel/core": "^7.2.2",
- "@babel/plugin-proposal-class-properties": "^7.2.3",
- "@babel/plugin-proposal-decorators": "^7.2.3",
- "@babel/plugin-proposal-do-expressions": "^7.2.0",
- "@babel/plugin-proposal-export-default-from": "^7.2.0",
- "@babel/plugin-proposal-export-namespace-from": "^7.2.0",
- "@babel/plugin-proposal-function-bind": "^7.2.0",
- "@babel/plugin-proposal-function-sent": "^7.2.0",
- "@babel/plugin-proposal-json-strings": "^7.2.0",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
- "@babel/plugin-proposal-numeric-separator": "^7.2.0",
- "@babel/plugin-proposal-object-rest-spread": "^7.2.0",
- "@babel/plugin-proposal-optional-chaining": "^7.2.0",
- "@babel/plugin-proposal-pipeline-operator": "^7.2.0",
- "@babel/plugin-proposal-throw-expressions": "^7.2.0",
- "@babel/plugin-syntax-dynamic-import": "^7.2.0",
- "@babel/plugin-syntax-import-meta": "^7.2.0",
- "@babel/preset-env": "^7.2.3",
- "@babel/preset-react": "^7.0.0",
- "@babel/register": "^7.0.0",
- "@epegzz/sass-vars-loader": "^4.0.0",
- "babel-eslint": "^10.0.1",
- "babel-loader": "^8.0.5",
- "chai": "^4.2.0",
- "css-loader": "^2.1.0",
- "dotenv-webpack": "^1.6.0",
- "enzyme": "^3.8.0",
- "enzyme-adapter-react-16": "^1.7.1",
- "eslint": "^5.12.0",
- "eslint-plugin-babel": "^5.3.0",
- "eslint-plugin-react": "^7.12.3",
- "html-loader": "^0.5.5",
- "html-webpack-plugin": "^3.2.0",
- "ignore-styles": "^5.0.1",
- "it-each": "^0.4.0",
- "jsdom": "^13.1.0",
- "mini-css-extract-plugin": "^0.5.0",
- "mongo-mocker": "0.0.8",
- "node-sass": "^4.11.0",
- "postcss-cssnext": "^3.1.0",
- "postcss-import": "^12.0.1",
- "postcss-loader": "^3.0.0",
- "react-hot-loader": "^4.6.3",
- "redux-logger": "^3.0.6",
- "redux-saga-test-plan": "^3.7.0",
- "sass-loader": "^7.1.0",
- "style-loader": "^0.23.1",
- "webpack": "^4.28.4",
- "webpack-cli": "^3.2.1",
- "webpack-dev-middleware": "^3.5.0",
- "webpack-hot-middleware": "^2.24.3"
- },
- "dependencies": {
- "@babel/polyfill": "^7.2.5",
- "@slack/client": "^4.8.0",
- "body-parser": "^1.18.3",
- "classnames": "^2.2.6",
- "create-reducer-object": "^1.1.0",
- "express": "^4.16.4",
- "express-async-errors": "^3.1.1",
- "express-basic-auth": "^1.1.6",
- "humanize-duration": "^3.17.0",
- "joi": "^14.3.1",
- "moment": "^2.23.0",
- "mongodb": "^3.1.10",
- "node-cron": "^2.0.3",
- "react": "^16.7.0",
- "react-dom": "^16.7.0",
- "react-redux": "^6.0.0",
- "redux": "^4.0.1",
- "redux-saga": "^0.16.2",
- "request-promise": "^4.2.2",
- "reselect": "^4.0.0",
- "soap": "^0.25.0",
- "uniqid": "^5.0.3",
- "winston": "^3.1.0"
- }
- }
|