reverse-proxy-frontend/package.json

110 lines
2.8 KiB
JSON
Raw Normal View History

2020-04-14 10:53:19 +03:00
{
2020-05-06 10:06:26 +03:00
"name": "reverse-proxy-frontend",
2020-04-14 10:53:19 +03:00
"version": "1.0.0",
"private": true,
2020-05-06 19:09:29 +03:00
"description": "Reverse proxy frontend application",
2020-04-14 10:53:19 +03:00
"scripts": {
2020-05-13 14:17:30 +03:00
"start": "run-p start:dev",
2021-05-15 02:03:00 +03:00
"start:dev": "webpack serve --config webpack.config.dev.js --port 3000",
2020-04-14 10:53:19 +03:00
"clean:build": "rimraf ./build && mkdir build",
2020-05-06 10:06:26 +03:00
"prebuild": "run-p clean:build",
2020-05-13 14:17:30 +03:00
"build": "webpack --config webpack.config.prod.js"
2020-04-14 10:53:19 +03:00
},
"dependencies": {
2020-05-12 02:31:25 +03:00
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
2020-05-21 00:58:51 +03:00
"@material-ui/lab": "^4.0.0-alpha.53",
2020-05-06 19:32:08 +03:00
"axios": "^0.19.2",
2020-04-14 10:53:19 +03:00
"bootstrap": "4.3.1",
2020-05-13 17:56:51 +03:00
"i18next": "^19.4.4",
"i18next-browser-languagedetector": "^4.1.1",
"i18next-http-backend": "^1.0.10",
2020-04-14 10:53:19 +03:00
"immer": "2.1.3",
2020-05-13 17:56:51 +03:00
"moment": "^2.25.3",
2020-04-14 10:53:19 +03:00
"prop-types": "15.7.2",
"react": "16.8.4",
"react-dom": "16.8.4",
2020-05-13 19:16:13 +03:00
"react-flags": "^0.1.18",
2020-05-13 17:56:51 +03:00
"react-i18next": "^11.4.0",
2020-04-14 10:53:19 +03:00
"react-redux": "6.0.1",
"react-router-dom": "5.0.0",
2020-06-06 01:42:11 +03:00
"react-simple-chatbot": "^0.6.1",
2020-06-05 19:37:59 +03:00
"recharts": "^1.8.5",
2020-04-14 10:53:19 +03:00
"redux": "4.0.1",
"redux-thunk": "2.3.0",
2020-06-06 01:42:11 +03:00
"reselect": "4.0.0",
"styled-components": "^5.1.1"
2020-04-14 10:53:19 +03:00
},
"devDependencies": {
2021-05-15 02:06:09 +03:00
"@babel/core": "7.14.2",
2020-04-14 10:53:19 +03:00
"babel-eslint": "10.0.1",
2021-05-15 02:06:09 +03:00
"babel-loader": "8.2.2",
"babel-preset-react-app": "10.0.0",
2021-05-15 02:03:00 +03:00
"copy-webpack-plugin": "^8.1.1",
2020-04-14 10:53:19 +03:00
"css-loader": "2.1.1",
"cssnano": "4.1.10",
"eslint": "5.15.2",
"eslint-loader": "2.1.2",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-react": "7.12.4",
"fetch-mock": "7.3.1",
2021-05-15 02:03:00 +03:00
"html-webpack-plugin": "5.3.1",
2020-04-14 10:53:19 +03:00
"mini-css-extract-plugin": "0.5.0",
"node-fetch": "^2.3.0",
"npm-run-all": "4.1.5",
"postcss-loader": "3.0.0",
2021-05-15 02:03:00 +03:00
"process": "^0.11.10",
2020-04-14 10:53:19 +03:00
"react-test-renderer": "16.8.4",
"react-testing-library": "6.0.0",
"redux-immutable-state-invariant": "2.1.0",
"redux-mock-store": "1.5.3",
"rimraf": "2.6.3",
"style-loader": "0.23.1",
2021-05-15 02:03:00 +03:00
"webpack": "^5.37.0",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
2020-04-14 10:53:19 +03:00
},
"engines": {
"node": ">=8"
},
"babel": {
"presets": [
"babel-preset-react-app"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
2020-05-06 10:06:26 +03:00
"es6": true
2020-04-14 10:53:19 +03:00
},
"rules": {
"no-debugger": "off",
"no-console": "off",
"no-unused-vars": "warn",
"react/prop-types": "warn"
},
"settings": {
"react": {
"version": "detect"
}
},
"root": true
}
}