Files
collection-portal/package.json
Prachi Mishra 314b4ac7a8 TP-26085 | Resolved merge conflicts (#323)
* TP-26085 | Prachi | Added recaptcha site key to entrypoint.sh

* TP-26085 | Remove brute force logins

* TP-26085 | Remove brute force logins

* TP-26085 | Resolved merge conflict

* TP-23460 | Pranjal | resolving conflicts while merging back

* TP-26085 | Pranjal | fixed missing code and errors

* TP-23460 | Pranjal | resolved comments

* TP-26085|Kunal| setting showcaptcha on /send otp api and rearrange capta above the submit otp button

Co-authored-by: pranjal-gupta-navi <109345336+pranjal-gupta-navi@users.noreply.github.com>
Co-authored-by: kunalsharma <kunal.sharma@navi.com>
2023-07-03 18:27:59 +05:30

116 lines
3.7 KiB
JSON

{
"name": "collections-portal",
"private": true,
"version": "0.0.0",
"scripts": {
"makeVersion": "node make_versions.js > dist/version.txt",
"start": "vite",
"clean": "rm -rf dist && rm -rf stats",
"copy-mocks": "cp -r __mocks__/ dist/__mocks__/",
"copy-config": "cp config.template.js dist/configuration.js",
"copy-firebase-sw": "cp firebase-messaging-sw.js dist/firebase-messaging-sw.js",
"build": "npm run clean && vite build && npm run copy-mocks && npm run copy-config",
"build:new": "npm run clean && vite build && npm run copy-mocks && npm run copy-config && npm run copy-firebase-sw && npm run makeVersion",
"preview": "vite preview",
"lint": "eslint \"**/?*.{ts,tsx,js}\"",
"lint:fix": "eslint --fix \"**/?*.{ts,tsx,js}\"",
"prettier-check": "prettier --check \"./**/*.{js,jsx,ts,tsx,css,scss,md}\"",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,scss,md}\"",
"test": "jest",
"lint-staged": "lint-staged",
"prepare": "husky install",
"type:check": "tsc",
"setup": "rm -rf node_modules && yarn && yarn update-submodule",
"update-submodule": "git submodule update --init"
},
"lint-staged": {
"*.{js,css,scss,md}": [
"prettier --write"
],
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"dependencies": {
"@elastic/apm-rum": "^5.10.2",
"@fingerprintjs/fingerprintjs": "^3.3.3",
"@reduxjs/toolkit": "^1.7.2",
"@sentry/browser": "7.13.0",
"@types/highcharts": "^7.0.0",
"@types/react-transition-group": "^4.4.5",
"ag-grid-community": "^28.1.1",
"ag-grid-react": "^28.1.1",
"autoprefixer": "^10.4.12",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"crypto-js": "^4.1.1",
"firebase": "^8.8.0",
"highcharts": "^10.3.3",
"highcharts-react": "^0.0.3",
"highcharts-react-official": "^3.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-recaptcha": "2.1.0",
"react-hook-form": "7.38.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.3.0",
"react-transition-group": "^4.4.5",
"recharts": "^2.5.0",
"redux-persist": "^6.0.0",
"style-inject": "^0.3.0",
"terser": "^5.15.1",
"vite-plugin-minify": "1.5.2",
"wavesurfer.js": "^6.6.3"
},
"devDependencies": {
"@types/chrome": "0.0.203",
"@types/enzyme": "^3.10.11",
"@types/jest": "^27.4.0",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-google-recaptcha": "2.1.5",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vitejs/plugin-react": "^1.0.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"ag-grid-community": "^28.1.1",
"ag-grid-react": "^28.1.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.10.2",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"lint-staged": "13.0.3",
"minimist": "^1.2.6",
"node-sass": "7.0.1",
"postcss": "^8.4.17",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"prettier": "^2.5.1",
"rollup-plugin-visualizer": "5.8.0",
"sass": "^1.54.5",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-mkcert": "^1.14.0",
"vite-tsconfig-paths": "^3.5.1"
},
"engines": {
"npm": ">=6.14.15",
"node": ">=12.2.0"
}
}