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>",
|
|
|
|
"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
|
|
|
},
|
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/",
|
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-03-09 05:40:06 +05:30
|
|
|
"i18n:push": "babel-node --presets flow --plugins transform-es2015-modules-commonjs ./scripts/i18n-crowdin.js push",
|
|
|
|
"i18n:pull": "babel-node --presets flow --plugins transform-es2015-modules-commonjs ./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": {
|
|
|
|
"babel-polyfill": "^6.3.14",
|
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",
|
2016-05-20 09:52:19 +05:30
|
|
|
"intl": "^1.2.2",
|
2016-01-03 01:54:07 +05:30
|
|
|
"intl-format-cache": "^2.0.4",
|
2017-08-23 01:02:16 +05:30
|
|
|
"intl-messageformat": "^2.1.0",
|
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",
|
2017-08-23 01:02:16 +05:30
|
|
|
"react-redux": "^5.0.6",
|
2019-01-15 02:10:25 +05:30
|
|
|
"react-router-dom": "^4.3.1",
|
2018-03-26 00:46:45 +05:30
|
|
|
"react-textarea-autosize": "^6.0.0",
|
2017-06-08 00:30:00 +05:30
|
|
|
"react-transition-group": "^1.1.3",
|
2016-01-03 01:54:07 +05:30
|
|
|
"redux": "^3.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-01-15 02:10:25 +05:30
|
|
|
"url-search-params-polyfill": "^5.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": {
|
2017-01-15 01:08:38 +05:30
|
|
|
"babel-cli": "^6.18.0",
|
2016-01-03 01:54:07 +05:30
|
|
|
"babel-core": "^6.0.0",
|
2019-01-15 02:10:25 +05:30
|
|
|
"babel-eslint": "^9.0.0",
|
2016-01-03 01:54:07 +05:30
|
|
|
"babel-loader": "^6.0.0",
|
2016-06-01 10:29:15 +05:30
|
|
|
"babel-plugin-react-intl": "^2.0.0",
|
2017-02-01 11:30:46 +05:30
|
|
|
"babel-plugin-transform-function-bind": "^6.0.0",
|
2016-01-03 01:54:07 +05:30
|
|
|
"babel-plugin-transform-runtime": "^6.3.13",
|
2016-06-01 10:29:15 +05:30
|
|
|
"babel-preset-airbnb": "^2.0.0",
|
2016-01-03 01:54:07 +05:30
|
|
|
"babel-preset-es2015": "^6.3.13",
|
2017-06-08 01:38:21 +05:30
|
|
|
"babel-preset-es2017": "^6.16.0",
|
|
|
|
"babel-preset-flow": "^6.23.0",
|
2017-10-17 23:30:35 +05:30
|
|
|
"babel-preset-react": "^6.3.13",
|
2016-01-08 18:44:11 +05:30
|
|
|
"babel-preset-react-hmre": "^1.0.1",
|
2016-01-03 01:54:07 +05:30
|
|
|
"babel-preset-stage-0": "^6.3.13",
|
2016-06-01 10:29:15 +05:30
|
|
|
"babel-runtime": "^6.0.0",
|
2016-05-09 00:58:51 +05:30
|
|
|
"bundle-loader": "^0.5.4",
|
2017-10-17 23:30:35 +05:30
|
|
|
"check-node-version": "^2.1.0",
|
2017-12-31 17:58:31 +05:30
|
|
|
"csp-webpack-plugin": "^1.0.2",
|
2017-04-20 00:28:57 +05:30
|
|
|
"css-loader": "^0.28.0",
|
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",
|
2016-02-13 14:36:17 +05:30
|
|
|
"exports-loader": "^0.6.3",
|
2016-06-01 10:29:15 +05:30
|
|
|
"extract-text-webpack-plugin": "^1.0.0",
|
2017-04-20 00:28:57 +05:30
|
|
|
"file-loader": "^0.11.0",
|
2019-01-15 01:22:46 +05:30
|
|
|
"flow-bin": "~0.80.0",
|
2016-05-22 17:36:57 +05:30
|
|
|
"fontgen-loader": "^0.2.1",
|
2016-05-08 16:56:25 +05:30
|
|
|
"html-loader": "^0.4.3",
|
|
|
|
"html-webpack-plugin": "^2.0.0",
|
2017-02-01 11:30:46 +05:30
|
|
|
"imports-loader": "^0.7.0",
|
2016-12-04 17:41:23 +05:30
|
|
|
"jsdom": "^9.8.3",
|
2016-05-01 23:20:55 +05:30
|
|
|
"json-loader": "^0.5.4",
|
2016-06-28 14:38:07 +05:30
|
|
|
"karma": "^1.1.0",
|
2017-04-20 00:28:57 +05:30
|
|
|
"karma-jsdom-launcher": "^6.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": "*",
|
2017-02-01 11:30:46 +05:30
|
|
|
"karma-webpack": "^2.0.0",
|
2017-04-20 00:28:57 +05:30
|
|
|
"loader-utils": "^1.0.0",
|
2016-08-14 14:27:15 +05:30
|
|
|
"mocha": "^3.0.2",
|
2019-05-20 18:39:38 +05:30
|
|
|
"node-sass": "^4.7.2",
|
2016-12-04 18:18:07 +05:30
|
|
|
"postcss-import": "^9.0.0",
|
|
|
|
"postcss-loader": "^1.2.0",
|
2016-11-30 12:18:47 +05:30
|
|
|
"postcss-scss": "^0.4.0",
|
2016-07-23 02:28:31 +05:30
|
|
|
"postcss-url": "SleepWalker/postcss-url#switch-to-async-api",
|
2016-05-22 17:36:57 +05:30
|
|
|
"raw-loader": "^0.5.1",
|
2019-01-15 02:10:25 +05:30
|
|
|
"react-test-renderer": "^16.7.0",
|
2016-06-28 14:38:07 +05:30
|
|
|
"sass-loader": "^4.0.0",
|
2017-03-07 02:49:46 +05:30
|
|
|
"scripts": "file:./scripts",
|
2017-08-23 01:02:16 +05:30
|
|
|
"sinon": "^3.2.1",
|
2017-12-23 04:30:52 +05:30
|
|
|
"sitemap-webpack-plugin": "^0.5.1",
|
2017-05-26 01:13:12 +05:30
|
|
|
"style-loader": "^0.18.0",
|
2017-08-23 01:02:16 +05:30
|
|
|
"unexpected": "^10.33.2",
|
2016-12-04 18:18:07 +05:30
|
|
|
"unexpected-sinon": "^10.5.1",
|
2016-04-02 16:27:45 +05:30
|
|
|
"url-loader": "^0.5.7",
|
2016-01-03 01:54:07 +05:30
|
|
|
"webpack": "^1.12.9",
|
2016-07-23 02:51:04 +05:30
|
|
|
"webpack-dev-server": "^1.14.0",
|
2017-03-07 02:49:46 +05:30
|
|
|
"webpack-utils": "file:./webpack-utils"
|
2016-01-03 01:54:07 +05:30
|
|
|
}
|
|
|
|
}
|