TP-24538: Initial commit for the base setup for the houston-ui

This commit is contained in:
k.kamalakannan
2023-04-08 18:14:20 +05:30
commit b239225d09
38 changed files with 5197 additions and 0 deletions

56
package.json Normal file
View File

@@ -0,0 +1,56 @@
{
"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}\""
},
"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.0"
}
}