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": {
|
2017-12-26 01:33:21 +05:30
|
|
|
"node": ">=8.0.0"
|
2017-12-13 03:43:36 +05:30
|
|
|
},
|
2019-07-01 09:09:59 +05:30
|
|
|
"workspaces": [
|
|
|
|
"webpack-utils",
|
|
|
|
"scripts"
|
|
|
|
],
|
2016-01-03 01:54:07 +05:30
|
|
|
"scripts": {
|
2017-12-31 01:14:32 +05:30
|
|
|
"start": "yarn run clean && yarn run build:dll && NODE_PATH=./src webpack-dev-server --progress --colors",
|
2016-12-04 18:42:36 +05:30
|
|
|
"clean": "rm -rf 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",
|
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",
|
2017-12-13 03:43:36 +05:30
|
|
|
"build": "yarn run clean && yarn run build:webpack --progress",
|
|
|
|
"build:install": "yarn install && check-node-version",
|
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",
|
2017-10-16 00:30:21 +05:30
|
|
|
"flag-icon-css": "^2.8.0",
|
2019-06-30 19:02:50 +05:30
|
|
|
"intl": "^1.2.5",
|
2019-01-15 02:10:25 +05:30
|
|
|
"promise.prototype.finally": "3.1.0",
|
|
|
|
"prop-types": "^15.6.2",
|
|
|
|
"raf": "^3.4.1",
|
|
|
|
"raven-js": "^3.27.0",
|
|
|
|
"react": "^16.7.0",
|
|
|
|
"react-dom": "^16.7.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-06-30 19:02:50 +05:30
|
|
|
"react-redux": "^7.1.0",
|
|
|
|
"react-router-dom": "^5.0.1",
|
2018-03-26 00:46:45 +05:30
|
|
|
"react-textarea-autosize": "^6.0.0",
|
2019-06-30 19:02:50 +05:30
|
|
|
"react-transition-group": "^4.2.0",
|
|
|
|
"redux": "^4.0.1",
|
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-06-30 19:02:50 +05:30
|
|
|
"url-search-params-polyfill": "^6.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-06-30 20:49:28 +05:30
|
|
|
"@babel/cli": "^7.0.0",
|
|
|
|
"@babel/core": "^7.0.0",
|
|
|
|
"@babel/node": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-do-expressions": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-function-bind": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-function-sent": "^7.0.0",
|
|
|
|
"@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",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
|
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
|
|
"@babel/plugin-syntax-import-meta": "^7.0.0",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.0.0",
|
|
|
|
"@babel/preset-env": "^7.0.0",
|
|
|
|
"@babel/preset-flow": "^7.0.0",
|
|
|
|
"@babel/preset-react": "^7.0.0",
|
|
|
|
"@babel/runtime-corejs3": "^7.4.5",
|
2019-01-15 02:10:25 +05:30
|
|
|
"babel-eslint": "^9.0.0",
|
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",
|
2017-10-17 23:30:35 +05:30
|
|
|
"check-node-version": "^2.1.0",
|
2019-06-30 20:49:28 +05:30
|
|
|
"core-js": "3",
|
2019-07-01 09:09:59 +05:30
|
|
|
"csp-webpack-plugin": "^2.0.2",
|
|
|
|
"css-loader": "^3.0.0",
|
|
|
|
"cssnano": "^4.1.10",
|
2019-01-15 02:10:25 +05:30
|
|
|
"enzyme": "^3.8.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.7.1",
|
2017-08-23 01:02:16 +05:30
|
|
|
"eslint": "^4.0.0",
|
2018-05-05 12:12:21 +05:30
|
|
|
"eslint-plugin-flowtype": "^2.46.3",
|
2017-08-23 01:02:16 +05:30
|
|
|
"eslint-plugin-react": "^7.3.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"exports-loader": "^0.7.0",
|
|
|
|
"file-loader": "^4.0.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-06-30 19:02:50 +05:30
|
|
|
"jsdom": "^15.1.1",
|
2016-05-01 23:20:55 +05:30
|
|
|
"json-loader": "^0.5.4",
|
2019-06-30 19:02:50 +05:30
|
|
|
"karma": "^4.1.0",
|
|
|
|
"karma-jsdom-launcher": "^7.1.1",
|
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-06-30 19:02:50 +05:30
|
|
|
"mocha": "^6.1.4",
|
2019-05-20 18:39:38 +05:30
|
|
|
"node-sass": "^4.7.2",
|
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",
|
|
|
|
"raw-loader": "^3.0.0",
|
2019-01-15 02:10:25 +05:30
|
|
|
"react-test-renderer": "^16.7.0",
|
2019-07-01 09:09:59 +05:30
|
|
|
"sass-loader": "^7.1.0",
|
2019-06-30 19:02:50 +05:30
|
|
|
"sinon": "^7.3.2",
|
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-07-01 09:09:59 +05:30
|
|
|
"style-loader": "^0.23.1",
|
2019-06-30 19:02:50 +05:30
|
|
|
"unexpected": "^11.6.1",
|
2016-12-04 18:18:07 +05:30
|
|
|
"unexpected-sinon": "^10.5.1",
|
2019-07-01 09:09:59 +05:30
|
|
|
"url-loader": "^2.0.1",
|
|
|
|
"webpack": "^4.35.0",
|
|
|
|
"webpack-cli": "^3.3.5",
|
2019-11-09 17:41:09 +05:30
|
|
|
"webpack-dev-server": "^3.7.2",
|
|
|
|
"webpackbar": "^4.0.0"
|
2016-01-03 01:54:07 +05:30
|
|
|
}
|
|
|
|
}
|