2016-01-03 01:54:07 +05:30
|
|
|
{
|
2019-03-11 00:00:42 +05:30
|
|
|
"name": "@elyby/accounts-frontend",
|
2016-01-03 01:54:07 +05:30
|
|
|
"description": "",
|
2019-03-11 00:00:42 +05:30
|
|
|
"main": "src/index.js",
|
|
|
|
"author": "SleepWalker <mybox@udf.su>",
|
2019-07-01 09:09:59 +05:30
|
|
|
"private": true,
|
2019-03-11 00:00:42 +05:30
|
|
|
"maintainers": [
|
|
|
|
{
|
|
|
|
"name": "ErickSkrauch",
|
|
|
|
"email": "erickskrauch@ely.by"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "SleepWalker",
|
|
|
|
"email": "mybox@udf.su"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"repository": "https://github.com/elyby/accounts-frontend",
|
2017-12-13 03:43:36 +05:30
|
|
|
"engines": {
|
2019-11-09 18:37:03 +05:30
|
|
|
"node": ">=10.0.0"
|
2017-12-13 03:43:36 +05:30
|
|
|
},
|
2019-07-01 09:09:59 +05:30
|
|
|
"workspaces": [
|
|
|
|
"webpack-utils",
|
2019-11-09 18:37:03 +05:30
|
|
|
"scripts",
|
|
|
|
"tests-e2e"
|
2019-07-01 09:09:59 +05:30
|
|
|
],
|
2016-01-03 01:54:07 +05:30
|
|
|
"scripts": {
|
2019-11-09 17:59:08 +05:30
|
|
|
"start": "yarn run clean && yarn run build:dll && NODE_PATH=./src webpack-dev-server --colors",
|
|
|
|
"clean": "rm -rf ./dist && mkdir ./dist",
|
2019-06-30 19:02:50 +05:30
|
|
|
"e2e": "yarn --cwd ./tests-e2e test",
|
2017-12-31 01:14:32 +05:30
|
|
|
"test": "yarn run build:dll && NODE_PATH=./src karma start ./karma.conf.js",
|
2019-11-09 17:59:08 +05:30
|
|
|
"analyze": "yarn run clean && yarn run build:webpack --analyze",
|
2016-01-03 01:54:07 +05:30
|
|
|
"lint": "eslint ./src",
|
2017-06-08 01:38:21 +05:30
|
|
|
"flow": "flow",
|
2016-12-29 05:20:43 +05:30
|
|
|
"i18n:collect": "babel-node ./scripts/i18n-collect.js",
|
2019-07-01 09:09:59 +05:30
|
|
|
"i18n:push": "babel-node ./scripts/i18n-crowdin.js push",
|
|
|
|
"i18n:pull": "babel-node ./scripts/i18n-crowdin.js pull",
|
2019-11-09 17:59:08 +05:30
|
|
|
"build": "yarn run clean && yarn run build:webpack",
|
2019-11-09 18:37:03 +05:30
|
|
|
"build:install": "yarn install",
|
2017-12-31 01:14:32 +05:30
|
|
|
"build:webpack": "NODE_PATH=./src webpack --colors -p --bail",
|
2017-12-13 03:43:36 +05:30
|
|
|
"build:quiet": "yarn run clean && yarn run build:webpack --quiet",
|
2016-11-29 11:42:20 +05:30
|
|
|
"build:dll": "node ./scripts/build-dll.js"
|
2016-01-03 01:54:07 +05:30
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-01-15 02:10:25 +05:30
|
|
|
"classnames": "^2.2.6",
|
2018-05-03 00:40:04 +05:30
|
|
|
"copy-to-clipboard": "^3.0.8",
|
2017-01-03 11:26:38 +05:30
|
|
|
"debounce": "^1.0.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"flag-icon-css": "^3.4.5",
|
2019-06-30 19:02:50 +05:30
|
|
|
"intl": "^1.2.5",
|
2019-11-09 18:37:03 +05:30
|
|
|
"promise.prototype.finally": "3.1.1",
|
2019-01-15 02:10:25 +05:30
|
|
|
"prop-types": "^15.6.2",
|
|
|
|
"raf": "^3.4.1",
|
|
|
|
"raven-js": "^3.27.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"react": "^16.11.0",
|
|
|
|
"react-dom": "^16.11.0",
|
2017-04-20 00:28:57 +05:30
|
|
|
"react-helmet": "^5.0.0",
|
2019-01-15 02:10:25 +05:30
|
|
|
"react-intl": "^2.7.2",
|
2017-05-26 01:13:12 +05:30
|
|
|
"react-motion": "^0.5.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"react-redux": "^7.1.3",
|
|
|
|
"react-router-dom": "^5.1.2",
|
|
|
|
"react-textarea-autosize": "^7.1.2",
|
|
|
|
"react-transition-group": "^4.3.0",
|
|
|
|
"redux": "^4.0.4",
|
2016-10-31 12:21:38 +05:30
|
|
|
"redux-localstorage": "^0.4.1",
|
2016-06-01 10:29:15 +05:30
|
|
|
"redux-thunk": "^2.0.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"url-search-params-polyfill": "^7.0.0",
|
2016-10-11 09:37:09 +05:30
|
|
|
"webfontloader": "^1.6.26",
|
2019-01-15 02:10:25 +05:30
|
|
|
"whatwg-fetch": "^3.0.0"
|
2016-01-03 01:54:07 +05:30
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-11-09 18:37:03 +05:30
|
|
|
"@babel/cli": "^7.7.0",
|
|
|
|
"@babel/core": "^7.7.2",
|
|
|
|
"@babel/node": "^7.7.0",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.7.0",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.7.0",
|
|
|
|
"@babel/plugin-proposal-do-expressions": "^7.6.0",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.5.2",
|
|
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
|
2019-06-30 20:49:28 +05:30
|
|
|
"@babel/plugin-proposal-function-bind": "^7.0.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"@babel/plugin-proposal-function-sent": "^7.7.0",
|
2019-06-30 20:49:28 +05:30
|
|
|
"@babel/plugin-proposal-json-strings": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
|
|
|
|
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
|
2019-06-30 20:49:28 +05:30
|
|
|
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
|
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
|
|
"@babel/plugin-syntax-import-meta": "^7.0.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
|
|
"@babel/preset-env": "^7.7.1",
|
2019-06-30 20:49:28 +05:30
|
|
|
"@babel/preset-flow": "^7.0.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"@babel/preset-react": "^7.7.0",
|
|
|
|
"@babel/runtime-corejs3": "^7.7.2",
|
|
|
|
"babel-eslint": "^10.0.3",
|
2019-06-30 20:49:28 +05:30
|
|
|
"babel-loader": "^8.0.0",
|
2016-06-01 10:29:15 +05:30
|
|
|
"babel-plugin-react-intl": "^2.0.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"core-js": "3.4.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"csp-webpack-plugin": "^2.0.2",
|
2019-11-09 18:37:03 +05:30
|
|
|
"css-loader": "^3.2.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"cssnano": "^4.1.10",
|
2019-11-09 18:12:02 +05:30
|
|
|
"dotenv": "^8.2.0",
|
2019-11-09 17:43:24 +05:30
|
|
|
"eager-imports-webpack-plugin": "^1.0.0",
|
2019-01-15 02:10:25 +05:30
|
|
|
"enzyme": "^3.8.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"enzyme-adapter-react-16": "^1.15.1",
|
|
|
|
"eslint": "^6.6.0",
|
|
|
|
"eslint-plugin-flowtype": "^4.3.0",
|
|
|
|
"eslint-plugin-react": "^7.16.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"exports-loader": "^0.7.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"file-loader": "^4.2.0",
|
2019-06-30 19:02:50 +05:30
|
|
|
"flow-bin": "~0.102.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"html-loader": "^0.5.5",
|
|
|
|
"html-webpack-plugin": "^3.2.0",
|
|
|
|
"imports-loader": "^0.8.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"jsdom": "^15.2.1",
|
2016-05-01 23:20:55 +05:30
|
|
|
"json-loader": "^0.5.4",
|
2019-11-09 18:37:03 +05:30
|
|
|
"karma": "^4.4.1",
|
|
|
|
"karma-jsdom-launcher": "^8.0.0",
|
2016-06-01 10:29:15 +05:30
|
|
|
"karma-mocha": "^1.0.0",
|
2016-01-03 14:41:08 +05:30
|
|
|
"karma-nyan-reporter": "^0.2.3",
|
2016-01-03 01:54:07 +05:30
|
|
|
"karma-sinon": "^1.0.4",
|
2016-01-03 14:41:08 +05:30
|
|
|
"karma-sourcemap-loader": "*",
|
2019-07-01 09:09:59 +05:30
|
|
|
"karma-webpack": "^4.0.2",
|
2017-04-20 00:28:57 +05:30
|
|
|
"loader-utils": "^1.0.0",
|
2019-09-02 10:57:52 +05:30
|
|
|
"mini-css-extract-plugin": "^0.8.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"mocha": "^6.2.2",
|
|
|
|
"node-sass": "^4.13.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"postcss-import": "^12.0.1",
|
2019-06-30 20:01:09 +05:30
|
|
|
"postcss-loader": "^3.0.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"postcss-scss": "^2.0.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"raw-loader": "^3.1.0",
|
|
|
|
"react-test-renderer": "^16.11.0",
|
|
|
|
"sass-loader": "^8.0.0",
|
|
|
|
"sinon": "^7.5.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"sitemap-webpack-plugin": "^0.6.0",
|
2019-11-09 17:41:09 +05:30
|
|
|
"speed-measure-webpack-plugin": "^1.3.1",
|
2019-11-09 18:37:03 +05:30
|
|
|
"style-loader": "^1.0.0",
|
|
|
|
"unexpected": "^11.8.0",
|
2016-12-04 18:18:07 +05:30
|
|
|
"unexpected-sinon": "^10.5.1",
|
2019-11-09 18:37:03 +05:30
|
|
|
"url-loader": "^2.2.0",
|
|
|
|
"webpack": "^4.41.2",
|
2019-11-09 17:59:08 +05:30
|
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
2019-11-09 18:37:03 +05:30
|
|
|
"webpack-cli": "^3.3.10",
|
|
|
|
"webpack-dev-server": "^3.9.0",
|
2019-11-09 17:41:09 +05:30
|
|
|
"webpackbar": "^4.0.0"
|
2016-01-03 01:54:07 +05:30
|
|
|
}
|
|
|
|
}
|