mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
178 lines
5.9 KiB
JSON
178 lines
5.9 KiB
JSON
{
|
|
"name": "@elyby/accounts-frontend",
|
|
"description": "",
|
|
"author": "SleepWalker <mybox@udf.su>",
|
|
"private": true,
|
|
"maintainers": [
|
|
{
|
|
"name": "ErickSkrauch",
|
|
"email": "erickskrauch@ely.by"
|
|
},
|
|
{
|
|
"name": "SleepWalker",
|
|
"email": "mybox@udf.su"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"repository": "https://github.com/elyby/accounts-frontend",
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"tests-e2e"
|
|
],
|
|
"scripts": {
|
|
"start": "yarn run clean && yarn run build:dll && webpack-dev-server --colors",
|
|
"clean": "rm -rf ./dist && mkdir ./dist",
|
|
"e2e": "yarn --cwd ./tests-e2e test",
|
|
"test": "jest",
|
|
"test:watch": "yarn test --watch",
|
|
"lint": "eslint --ext js,ts,tsx --fix --quiet .",
|
|
"lint:check": "eslint --ext js,ts,tsx --quiet .",
|
|
"prettier": "prettier --write \"{packages/**/*,tests-e2e/**/*,jest/**/*,config/**/*,*}.{js,ts,tsx,json,md,scss,css}\"",
|
|
"prettier:check": "prettier --check \"{packages/**/*,tests-e2e/**/*,jest/**/*,config/**/*,*}.{js,ts,tsx,json,md,scss,css}\"",
|
|
"ts:check": "tsc",
|
|
"ci:check": "yarn lint:check && yarn ts:check && yarn test",
|
|
"analyze": "yarn run clean && yarn run build:webpack --analyze",
|
|
"i18n:collect": "babel-node ./packages/scripts/i18n-collect.js",
|
|
"i18n:push": "babel-node ./packages/scripts/i18n-crowdin.js push",
|
|
"i18n:pull": "babel-node ./packages/scripts/i18n-crowdin.js pull",
|
|
"build": "yarn run clean && yarn run build:webpack",
|
|
"build:install": "yarn install",
|
|
"build:webpack": "NODE_ENV=production webpack --colors -p --bail",
|
|
"build:quiet": "yarn run clean && yarn run build:webpack --quiet",
|
|
"build:dll": "node ./packages/scripts/build-dll.js",
|
|
"build:serve": "http-server --proxy https://dev.account.ely.by ./dist",
|
|
"sb": "start-storybook -p 9009 --ci",
|
|
"build-storybook": "build-storybook"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"pre-push": "yarn ci:check"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{json,scss,css,md}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"*.{js,ts,tsx}": [
|
|
"eslint --fix --quiet",
|
|
"git add"
|
|
]
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"<rootDir>/packages/app"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/jest/setupAfterEnv.js"
|
|
],
|
|
"resetMocks": true,
|
|
"resetModules": true,
|
|
"restoreMocks": true,
|
|
"watchPlugins": [
|
|
"jest-watch-typeahead/filename",
|
|
"jest-watch-typeahead/testname"
|
|
],
|
|
"moduleNameMapper": {
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/jest/__mocks__/mockStrExport.js",
|
|
"\\.(css|less|scss)$": "identity-obj-proxy"
|
|
},
|
|
"transform": {
|
|
"\\.intl\\.json$": "<rootDir>/jest/__mocks__/intlMock.js",
|
|
"^.+\\.[tj]sx?$": "babel-jest"
|
|
}
|
|
},
|
|
"resolutions": {
|
|
"@types/node": "^12.0.0"
|
|
},
|
|
"dependencies": {
|
|
"react": "^16.12.0",
|
|
"react-dom": "^16.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.7.7",
|
|
"@babel/core": "^7.7.7",
|
|
"@babel/node": "^7.7.7",
|
|
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
|
"@babel/plugin-proposal-decorators": "^7.7.4",
|
|
"@babel/plugin-proposal-do-expressions": "^7.7.4",
|
|
"@babel/plugin-proposal-export-default-from": "^7.7.4",
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
|
|
"@babel/plugin-proposal-function-bind": "^7.7.4",
|
|
"@babel/plugin-proposal-function-sent": "^7.7.4",
|
|
"@babel/plugin-proposal-json-strings": "^7.7.4",
|
|
"@babel/plugin-proposal-logical-assignment-operators": "^7.7.4",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
|
|
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
|
|
"@babel/plugin-proposal-pipeline-operator": "^7.7.7",
|
|
"@babel/plugin-proposal-throw-expressions": "^7.7.4",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
|
|
"@babel/plugin-syntax-import-meta": "^7.7.4",
|
|
"@babel/plugin-transform-runtime": "^7.7.6",
|
|
"@babel/preset-env": "^7.7.7",
|
|
"@babel/preset-react": "^7.7.4",
|
|
"@babel/preset-typescript": "^7.7.7",
|
|
"@babel/runtime-corejs3": "^7.7.7",
|
|
"@storybook/addon-actions": "^5.2.8",
|
|
"@storybook/addon-links": "^5.2.8",
|
|
"@storybook/addon-viewport": "^5.2.8",
|
|
"@storybook/addons": "^5.2.8",
|
|
"@storybook/react": "^5.2.8",
|
|
"@types/jest": "^24.0.24",
|
|
"@typescript-eslint/eslint-plugin": "^2.13.0",
|
|
"@typescript-eslint/parser": "^2.13.0",
|
|
"babel-loader": "^8.0.0",
|
|
"babel-plugin-react-intl": "^5.1.11",
|
|
"core-js": "3.6.1",
|
|
"csp-webpack-plugin": "^2.0.2",
|
|
"css-loader": "^3.4.0",
|
|
"cssnano": "^4.1.10",
|
|
"dotenv": "^8.2.0",
|
|
"eager-imports-webpack-plugin": "^1.0.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.8.0",
|
|
"eslint-plugin-jsdoc": "^18.4.4",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"eslint-plugin-react": "^7.17.0",
|
|
"exports-loader": "^0.7.0",
|
|
"file-loader": "^5.0.2",
|
|
"html-loader": "^0.5.5",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"husky": "^3.1.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"imports-loader": "^0.8.0",
|
|
"jest": "^24.9.0",
|
|
"jest-watch-typeahead": "^0.4.2",
|
|
"json-loader": "^0.5.4",
|
|
"lint-staged": "^9.5.0",
|
|
"loader-utils": "^1.0.0",
|
|
"mini-css-extract-plugin": "^0.9.0",
|
|
"node-sass": "^4.13.0",
|
|
"postcss-import": "^12.0.1",
|
|
"postcss-loader": "^3.0.0",
|
|
"postcss-scss": "^2.0.0",
|
|
"prettier": "^1.19.1",
|
|
"raw-loader": "^4.0.0",
|
|
"react-test-renderer": "^16.12.0",
|
|
"sass-loader": "^8.0.0",
|
|
"sinon": "^8.0.1",
|
|
"sitemap-webpack-plugin": "^0.6.0",
|
|
"speed-measure-webpack-plugin": "^1.3.1",
|
|
"style-loader": "~1.0.0",
|
|
"typescript": "^3.7.4",
|
|
"unexpected": "^11.11.0",
|
|
"unexpected-sinon": "^10.5.1",
|
|
"url-loader": "^3.0.0",
|
|
"webpack": "^4.41.4",
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
|
"webpack-cli": "^3.3.10",
|
|
"webpack-dev-server": "^3.10.1",
|
|
"webpackbar": "^4.0.0"
|
|
}
|
|
}
|