mirror of
https://github.com/valitydev/checkout.git
synced 2024-11-06 10:35:20 +00:00
109 lines
3.1 KiB
JSON
109 lines
3.1 KiB
JSON
{
|
|
"name": "checkout",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"scripts": {
|
|
"clear": "rimraf dist && rimraf .cache-loader",
|
|
"build": "npm run clear && webpack --colors --progress --config config/webpack.prod.js",
|
|
"start": "npm run clear && webpack-dev-server --colors --progress --config config/webpack.dev.js --port 7050 --host ::",
|
|
"test": "jest"
|
|
},
|
|
"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": {
|
|
"classnames": "~2.2.5",
|
|
"currency-formatter": "~1.2.1",
|
|
"date-fns": "~1.28.5",
|
|
"fingerprintjs2": "~1.6.1",
|
|
"ismobilejs": "~0.4.1",
|
|
"libphonenumber-js": "1.0.21",
|
|
"lodash-es": "~4.17.5",
|
|
"react": "~16.2.0",
|
|
"react-dom": "~16.2.0",
|
|
"react-redux": "~5.0.5",
|
|
"react-transition-group": "~1.1.3",
|
|
"redux": "~3.7.2",
|
|
"redux-form": "~7.2.3",
|
|
"redux-saga": "~0.16.0",
|
|
"redux-thunk": "~2.2.0",
|
|
"uri-template": "~1.0.1",
|
|
"url-polyfill": "~1.0.11",
|
|
"whatwg-fetch": "~2.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/classnames": "~2.2.3",
|
|
"@types/currency-formatter": "~1.3.0",
|
|
"@types/ismobilejs": "~0.4.1",
|
|
"@types/jest": "~22.1.3",
|
|
"@types/lodash-es": "~4.17.0",
|
|
"@types/react": "~16.0.36",
|
|
"@types/react-dom": "~16.0.1",
|
|
"@types/react-redux": "~5.0.14",
|
|
"@types/react-test-renderer": "~16.0.1",
|
|
"@types/react-transition-group": "~1.1.0",
|
|
"@types/redux-form": "~7.0.13",
|
|
"@types/redux-saga": "~0.10.5",
|
|
"@types/url-parse": "~1.1.0",
|
|
"babel-jest": "~22.4.1",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "~6.26.0",
|
|
"babel-preset-es2015": "~6.24.1",
|
|
"cache-loader": "~1.2.0",
|
|
"copy-webpack-plugin": "~4.4.1",
|
|
"css-loader": "~0.28.9",
|
|
"extract-text-webpack-plugin": "~3.0.2",
|
|
"file-loader": "~1.1.6",
|
|
"fork-ts-checker-webpack-plugin": "~0.3.0",
|
|
"html-webpack-plugin": "~2.30.1",
|
|
"identity-obj-proxy": "~3.0.0",
|
|
"jest": "~22.4.2",
|
|
"node-sass": "~4.7.2",
|
|
"react-test-renderer": "~16.2.0",
|
|
"redux-devtools-extension": "~2.13.2",
|
|
"rimraf": "~2.6.2",
|
|
"sass-loader": "~6.0.3",
|
|
"style-loader": "~0.20.1",
|
|
"thread-loader": "~1.1.2",
|
|
"ts-jest": "~22.4.0",
|
|
"ts-loader": "~3.5.0",
|
|
"tslint": "~5.9.1",
|
|
"tslint-immutable": "~4.5.1",
|
|
"tslint-loader": "~3.5.3",
|
|
"tslint-react": "~3.4.0",
|
|
"typescript": "~2.7.1",
|
|
"webpack": "~3.11.0",
|
|
"webpack-bundle-analyzer": "~2.10.0",
|
|
"webpack-dev-server": "~2.11.1",
|
|
"webpack-merge": "~4.1.0",
|
|
"write-file-webpack-plugin": "~4.2.0"
|
|
}
|
|
}
|