checkout/package.json
2021-02-26 18:26:40 +03:00

129 lines
4.0 KiB
JSON

{
"name": "checkout",
"version": "1.0.0",
"description": "",
"scripts": {
"clear": "rimraf dist && rimraf .cache-loader",
"build": "npm run clear && webpack --mode production --colors --progress --config config/webpack.prod.js",
"start": "npm run clear && webpack-dev-server --mode development --colors --progress --config config/webpack.dev.js --port 7050 --host ::",
"test": "jest --silent",
"check": "npm run lint:fix; npm run prettier:check",
"fix": "npm run lint:fix; npm run prettier:fix",
"prettier:fix": "prettier \"**\" --write",
"prettier:check": "prettier \"**\" --list-different",
"lint:fix": "tslint \"src/**/*.@(ts|tsx)\" -e \"**/*.d.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbkmoney/payform.git"
},
"author": "rbkmoney",
"license": "",
"private": true,
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest",
"^.+\\.ts(x)?$": "ts-jest"
},
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).ts?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"^.+\\.scss$": "identity-obj-proxy",
"^checkout/(.*)": "<rootDir>/src/app/$1"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es)"
]
},
"dependencies": {
"card-validator": "~6.2.0",
"credit-card-type": "~8.2.0",
"currency-formatter": "~1.2.1",
"date-fns": "~1.28.5",
"fingerprintjs2": "~2.1.0",
"ismobilejs": "~0.4.1",
"kjua": "^0.9.0",
"libphonenumber-js": "1.9.6",
"lodash-es": "~4.17.15",
"react": "~16.6.3",
"react-dom": "~16.6.3",
"react-redux": "~5.1.1",
"react-transition-group": "1.2.1",
"redux": "~3.7.2",
"redux-form": "~7.2.3",
"redux-saga": "~0.16.0",
"reselect": "~4.0.0",
"styled-components": "~4.1.1",
"ts-polyfill": "~3.8.2",
"uri-template": "~1.0.1",
"url-polyfill": "~1.0.11",
"uuid": "~8.3.2",
"whatwg-fetch": "~2.0.3"
},
"devDependencies": {
"@types/card-validator": "~4.1.0",
"@types/credit-card-type": "~7.0.0",
"@types/currency-formatter": "~1.3.0",
"@types/fingerprintjs2": "~2.0.0",
"@types/ismobilejs": "~0.4.1",
"@types/jest": "~23.3.14",
"@types/lodash-es": "~4.17.0",
"@types/node": "^11.13.18",
"@types/react": "~16.7.6",
"@types/react-dom": "~16.0.9",
"@types/react-redux": "~5.0.21",
"@types/react-test-renderer": "~16.0.1",
"@types/react-transition-group": "1.1.5",
"@types/redux-form": "~7.2.6",
"@types/reselect": "~2.2.0",
"@types/styled-components": "~4.1.0",
"@types/url-parse": "~1.1.0",
"@types/uuid": "~8.3.0",
"babel-jest": "~22.4.1",
"babel-plugin-transform-es2015-modules-commonjs": "~6.26.2",
"babel-preset-env": "~1.7.0",
"cache-loader": "~2.0.1",
"compression-webpack-plugin": "~3.1.0",
"copy-webpack-plugin": "~5.1.1",
"cross-origin-communicator": "git+ssh://git@github.com/rbkmoney/cross-origin-communicator.git#dc3209dab12fb5d745c21b72d10ebe567270a836",
"css-loader": "~1.0.1",
"file-loader": "~2.0.0",
"fork-ts-checker-webpack-plugin": "~4.1.1",
"html-webpack-plugin": "~3.2.0",
"identity-obj-proxy": "~3.0.0",
"jest": "~23.6.0",
"mini-css-extract-plugin": "~0.4.5",
"prettier": "~1.19.1",
"react-test-renderer": "~16.2.0",
"redux-devtools-extension": "~2.13.2",
"rimraf": "~2.6.2",
"style-loader": "~0.23.1",
"svg-react-loader": "~0.4.6",
"thread-loader": "~2.1.2",
"ts-jest": "~23.10.5",
"ts-loader": "~5.3.3",
"tslint": "~5.11.0",
"tslint-config-prettier": "~1.18.0",
"tslint-immutable": "~4.5.1",
"tslint-loader": "~3.5.4",
"tslint-react": "~3.6.0",
"typescript": "~3.5.3",
"typescript-plugin-styled-components": "~1.0.0",
"webpack": "~4.29.0",
"webpack-bundle-analyzer": "~3.6.0",
"webpack-cli": "~3.2.1",
"webpack-dev-server": "~3.11.0",
"webpack-merge": "~4.2.1",
"write-file-webpack-plugin": "~4.5.0"
}
}