--- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <376+dependabot[bot]@users.noreply.github.cmd.navi-tech.in>
71 lines
2.1 KiB
JSON
71 lines
2.1 KiB
JSON
{
|
|
"name": "houston-ui",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"preview": "vite preview",
|
|
"clear-build": "rm -rf dist",
|
|
"local-copy-config": "cp config.qa.js config.js",
|
|
"dev": "npm run local-copy-config && vite",
|
|
"copy-config": "cp setup.template.js dist/config.js",
|
|
"build": "npm run clear-build && tsc && vite build && npm run copy-config",
|
|
"lint": "eslint --fix \"**/?*.{ts,tsx,js,jsx}\"",
|
|
"eslint-check": "eslint \"**/?*.{ts,tsx,js,jsx}\"",
|
|
"prepare": "husky install",
|
|
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,scss,md}\"",
|
|
"prettier-check": "prettier --check \"./**/*.{js,jsx,ts,tsx,css,scss,md}\""
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"pre-push": "yarn eslint-check"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,jsx,ts,tsx,css,scss}": [
|
|
"yarn pretty"
|
|
],
|
|
"src/**/*.{js,jsx,ts,tsx}": [
|
|
"yarn lint"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@navi/web-ui": "^1.49.8",
|
|
"@super-app/dark-knight": "^1.0.6",
|
|
"axios": "^1.3.4",
|
|
"classnames": "^2.3.2",
|
|
"node-sass": "^8.0.0",
|
|
"path": "^0.12.7",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.8.2",
|
|
"sass": "^1.58.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.28",
|
|
"@types/react-dom": "^18.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
"@typescript-eslint/parser": "^5.54.1",
|
|
"@vitejs/plugin-react": "^3.1.0",
|
|
"autoprefixer": "^10.4.14",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-prettier": "^8.7.0",
|
|
"eslint-import-resolver-typescript": "^3.5.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"husky": "^8.0.3",
|
|
"postcss": "^8.4.21",
|
|
"postcss-import": "^15.1.0",
|
|
"postcss-nested": "^6.0.1",
|
|
"postcss-prefix-selector": "^1.16.0",
|
|
"prettier": "^2.8.4",
|
|
"tailwindcss": "^3.2.7",
|
|
"typescript": "^4.9.3",
|
|
"vite": "^4.2.3"
|
|
}
|
|
}
|