AdGuardHome/client/package.json

82 lines
2.5 KiB
JSON
Raw Normal View History

2018-08-30 15:25:33 +01:00
{
"name": "dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
2020-04-15 13:41:48 +01:00
"build-dev": "cross-env NODE_ENV=development webpack --config webpack.dev.js",
"watch": "cross-env NODE_ENV=development webpack --config webpack.dev.js --watch",
"build-prod": "cross-env NODE_ENV=production webpack --config webpack.prod.js",
"lint": "eslint client/"
2018-08-30 15:25:33 +01:00
},
"dependencies": {
2018-10-12 13:20:59 +01:00
"@nivo/line": "^0.49.1",
2019-07-18 12:52:47 +01:00
"axios": "^0.19.0",
2018-08-30 15:25:33 +01:00
"classnames": "^2.2.6",
"date-fns": "^1.29.0",
"i18next": "^12.0.0",
"i18next-browser-languagedetector": "^2.2.3",
2019-07-22 13:32:12 +01:00
"lodash": "^4.17.15",
2018-09-14 13:37:35 +01:00
"nanoid": "^1.2.3",
2019-09-26 09:36:02 +01:00
"prop-types": "^15.7.2",
2018-08-30 15:25:33 +01:00
"react": "^16.4.0",
"react-click-outside": "^3.0.1",
"react-dom": "^16.4.0",
2018-11-06 02:51:00 +00:00
"react-i18next": "^8.2.0",
2018-08-30 15:25:33 +01:00
"react-modal": "^3.4.5",
"react-redux": "^5.0.7",
"react-redux-loading-bar": "^4.0.7",
2018-08-30 15:25:33 +01:00
"react-router-dom": "^4.2.2",
2019-07-22 13:32:12 +01:00
"react-router-hash-link": "^1.2.2",
2020-01-28 11:07:47 +00:00
"react-select": "^3.0.8",
2019-09-26 09:36:02 +01:00
"react-table": "^6.10.3",
2018-09-14 13:37:35 +01:00
"react-transition-group": "^2.4.0",
2018-08-30 15:25:33 +01:00
"redux": "^4.0.0",
"redux-actions": "^2.4.0",
"redux-form": "^7.4.2",
2018-08-30 15:25:33 +01:00
"redux-thunk": "^2.3.0",
"url-polyfill": "^1.1.7"
2018-08-30 15:25:33 +01:00
},
"devDependencies": {
"autoprefixer": "^8.6.3",
"babel-core": "6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "6.26.0",
2018-10-12 13:20:59 +01:00
"clean-webpack-plugin": "^0.1.19",
2018-08-30 15:25:33 +01:00
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.6.0",
2020-04-15 13:41:48 +01:00
"cross-env": "^7.0.2",
2019-04-17 14:55:15 +01:00
"css-loader": "^2.1.1",
2018-08-30 15:25:33 +01:00
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-react-app": "^2.1.0",
"eslint-import-resolver-webpack": "^0.12.1",
2018-08-30 15:25:33 +01:00
"eslint-loader": "1.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "1.1.5",
"html-webpack-plugin": "^3.2.0",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.5",
"postcss-mixins": "^6.2.0",
"postcss-preset-env": "^5.1.0",
"postcss-svg": "^2.4.0",
"style-loader": "^0.21.0",
2019-02-20 12:39:36 +00:00
"stylelint": "^9.10.1",
2018-08-30 15:25:33 +01:00
"stylelint-webpack-plugin": "0.10.4",
2020-04-15 13:41:48 +01:00
"svg-url-loader": "^2.3.2",
2018-08-30 15:25:33 +01:00
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "3.8.1",
2019-01-29 08:59:07 +00:00
"webpack-dev-server": "^3.1.14",
2020-04-15 13:41:48 +01:00
"webpack-merge": "^4.1.3"
2018-08-30 15:25:33 +01:00
}
}