2016-10-05 17:14:25 +00:00
|
|
|
{
|
2018-02-08 12:48:05 +00:00
|
|
|
"name": "checkout",
|
2022-01-24 11:38:04 +00:00
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
2016-10-05 17:14:25 +00:00
|
|
|
"scripts": {
|
2018-02-16 14:37:17 +00:00
|
|
|
"clear": "rimraf dist && rimraf .cache-loader",
|
2018-12-20 08:56:59 +00:00
|
|
|
"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 ::",
|
2021-08-03 16:15:59 +00:00
|
|
|
"test": "jest",
|
2023-05-11 13:20:16 +00:00
|
|
|
"test:watch": "jest --watch",
|
2020-09-11 14:58:16 +00:00
|
|
|
"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\""
|
2016-10-05 17:14:25 +00:00
|
|
|
},
|
2022-01-24 11:38:04 +00:00
|
|
|
"license": "Apache-2.0",
|
2016-10-13 12:10:53 +00:00
|
|
|
"dependencies": {
|
2022-06-30 09:49:04 +00:00
|
|
|
"@dinero.js/currencies": "^2.0.0-alpha.8",
|
2023-04-18 09:42:43 +00:00
|
|
|
"@sentry/react": "7.48.0",
|
2022-02-17 15:36:58 +00:00
|
|
|
"card-validator": "8.1.1",
|
2022-02-17 15:08:09 +00:00
|
|
|
"credit-card-type": "9.1.0",
|
2020-02-19 13:52:42 +00:00
|
|
|
"fingerprintjs2": "~2.1.0",
|
2022-10-20 16:42:37 +00:00
|
|
|
"ismobilejs": "1.1.1",
|
2022-05-23 13:57:13 +00:00
|
|
|
"kjua": "^0.9.0",
|
2020-12-28 16:42:40 +00:00
|
|
|
"libphonenumber-js": "1.9.6",
|
2022-04-14 13:45:46 +00:00
|
|
|
"lodash-es": "~4.17.21",
|
2022-03-10 13:17:31 +00:00
|
|
|
"md5": "2.3.0",
|
2022-01-24 11:38:04 +00:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
|
|
|
"react-redux": "7.2.6",
|
|
|
|
"react-svg": "14.1.8",
|
2018-08-14 10:19:30 +00:00
|
|
|
"react-transition-group": "1.2.1",
|
2022-01-24 11:38:04 +00:00
|
|
|
"redux": "4.1.2",
|
|
|
|
"redux-form": "8.3.8",
|
|
|
|
"redux-saga": "1.1.3",
|
2020-12-25 12:26:28 +00:00
|
|
|
"reselect": "~4.0.0",
|
2022-01-24 11:38:04 +00:00
|
|
|
"styled-components": "5.3.3",
|
2022-01-24 11:48:46 +00:00
|
|
|
"uri-template": "1.0.3",
|
2023-05-15 13:09:09 +00:00
|
|
|
"uuid": "~8.3.2"
|
2016-10-13 12:10:53 +00:00
|
|
|
},
|
2016-10-05 17:14:25 +00:00
|
|
|
"devDependencies": {
|
2022-01-24 11:38:04 +00:00
|
|
|
"@redux-saga/testing-utils": "^1.1.3",
|
2023-05-11 13:20:16 +00:00
|
|
|
"@testing-library/react-hooks": "8.0.1",
|
2019-07-25 12:57:30 +00:00
|
|
|
"@types/card-validator": "~4.1.0",
|
|
|
|
"@types/credit-card-type": "~7.0.0",
|
2017-12-25 11:20:48 +00:00
|
|
|
"@types/currency-formatter": "~1.3.0",
|
2020-02-19 13:52:42 +00:00
|
|
|
"@types/fingerprintjs2": "~2.0.0",
|
2023-04-17 10:44:11 +00:00
|
|
|
"@types/jest": "29.5.0",
|
2018-02-08 12:48:05 +00:00
|
|
|
"@types/lodash-es": "~4.17.0",
|
2022-02-17 15:33:04 +00:00
|
|
|
"@types/node": "16.11.25",
|
2022-01-24 11:38:04 +00:00
|
|
|
"@types/react": "17.0.38",
|
|
|
|
"@types/react-dom": "17.0.11",
|
|
|
|
"@types/react-redux": "7.1.22",
|
|
|
|
"@types/react-test-renderer": "17.0.1",
|
2018-08-14 10:19:30 +00:00
|
|
|
"@types/react-transition-group": "1.1.5",
|
2022-01-24 11:38:04 +00:00
|
|
|
"@types/redux-form": "8.3.3",
|
2020-12-25 12:26:28 +00:00
|
|
|
"@types/reselect": "~2.2.0",
|
2022-01-24 11:38:04 +00:00
|
|
|
"@types/styled-components": "5.1.20",
|
2017-11-27 08:10:59 +00:00
|
|
|
"@types/url-parse": "~1.1.0",
|
2021-02-26 15:26:40 +00:00
|
|
|
"@types/uuid": "~8.3.0",
|
2022-02-17 15:20:25 +00:00
|
|
|
"cache-loader": "4.1.0",
|
2022-02-17 15:21:34 +00:00
|
|
|
"concurrently": "7.0.0",
|
2020-01-17 15:19:22 +00:00
|
|
|
"copy-webpack-plugin": "~5.1.1",
|
2018-12-20 08:56:59 +00:00
|
|
|
"css-loader": "~1.0.1",
|
|
|
|
"file-loader": "~2.0.0",
|
2020-03-26 01:10:18 +00:00
|
|
|
"fork-ts-checker-webpack-plugin": "~4.1.1",
|
2018-12-20 08:56:59 +00:00
|
|
|
"html-webpack-plugin": "~3.2.0",
|
2018-02-28 11:13:53 +00:00
|
|
|
"identity-obj-proxy": "~3.0.0",
|
2023-04-17 10:44:11 +00:00
|
|
|
"jest": "29.5.0",
|
|
|
|
"jest-environment-jsdom": "29.5.0",
|
2018-12-20 08:56:59 +00:00
|
|
|
"mini-css-extract-plugin": "~0.4.5",
|
2020-02-19 14:23:12 +00:00
|
|
|
"prettier": "~1.19.1",
|
2022-01-24 11:38:04 +00:00
|
|
|
"react-test-renderer": "17.0.2",
|
|
|
|
"redux-devtools-extension": "2.13.9",
|
2018-02-15 11:16:12 +00:00
|
|
|
"rimraf": "~2.6.2",
|
2018-12-20 08:56:59 +00:00
|
|
|
"style-loader": "~0.23.1",
|
|
|
|
"svg-react-loader": "~0.4.6",
|
2019-01-29 16:54:37 +00:00
|
|
|
"thread-loader": "~2.1.2",
|
2023-04-17 10:44:11 +00:00
|
|
|
"ts-jest": "29.1.0",
|
2019-01-29 16:54:37 +00:00
|
|
|
"ts-loader": "~5.3.3",
|
2018-11-14 09:01:22 +00:00
|
|
|
"tslint": "~5.11.0",
|
2020-02-19 14:23:12 +00:00
|
|
|
"tslint-config-prettier": "~1.18.0",
|
2018-02-12 12:51:05 +00:00
|
|
|
"tslint-immutable": "~4.5.1",
|
2018-11-14 09:01:22 +00:00
|
|
|
"tslint-loader": "~3.5.4",
|
|
|
|
"tslint-react": "~3.6.0",
|
2022-01-24 11:38:04 +00:00
|
|
|
"typescript": "4.5.4",
|
2019-01-29 16:54:37 +00:00
|
|
|
"typescript-plugin-styled-components": "~1.0.0",
|
|
|
|
"webpack": "~4.29.0",
|
2019-11-06 11:43:16 +00:00
|
|
|
"webpack-bundle-analyzer": "~3.6.0",
|
2022-02-17 15:13:04 +00:00
|
|
|
"webpack-cli": "~3.3.0",
|
2020-12-09 21:46:42 +00:00
|
|
|
"webpack-dev-server": "~3.11.0",
|
2019-01-29 16:54:37 +00:00
|
|
|
"webpack-merge": "~4.2.1",
|
2018-12-20 08:56:59 +00:00
|
|
|
"write-file-webpack-plugin": "~4.5.0"
|
2016-10-05 17:14:25 +00:00
|
|
|
}
|
|
|
|
}
|