{ "name": "litmus-ui", "version": "1.0.0", "main": "index.js", "scripts": { "start": "webpack serve --config webpack/webpack.config.js --env env=dev", "lint": "eslint \"**/?*.{ts,tsx,js}\"", "lint:fix": "eslint --fix \"**/?*.{ts,tsx,js}\"", "prettier": "prettier --check \"./**/*.{js,jsx,ts,tsx,css,scss,md}\"", "prettier:write": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,scss,md}\"", "prepare": "husky install", "clean": "rm -rf dist", "build": "yarn clean && tsc && yarn webpack-build", "webpack-build": "webpack --config webpack/webpack.config.js --mode production --env env=prod" }, "author": "Yash Mantri", "license": "ISC", "dependencies": { "@emotion/react": "^11.10.6", "@emotion/styled": "^11.10.6", "@mui/material": "^5.12.1", "@navi/web-ui": "^1.49.8", "@reduxjs/toolkit": "^1.9.4", "@super-app/dark-knight": "^1.0.6", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^14.0.0", "@typescript-eslint/eslint-plugin": "^2.10.0", "@typescript-eslint/parser": "^2.10.0", "axios": "^1.3.5", "chart.js": "^4.2.1", "classnames": "^2.3.2", "crypto": "^1.0.1", "eslint-loader": "3.0.3", "eslint-plugin-unused-imports": "^2.0.0", "formik": "^2.2.9", "lint-staged": "^13.2.2", "moment": "^2.29.4", "postcss-loader": "^7.2.4", "react": "^18.2.0", "react-chartjs-2": "^5.2.0", "react-dom": "^18.2.0", "react-redux": "^8.0.5", "react-router-dom": "^6.8.2", "ts-jest": "^29.1.0" }, "devDependencies": { "@babel/core": "^7.21.0", "@babel/preset-env": "^7.20.2", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.21.0", "@types/jest": "^29.5.1", "@types/react": "^18.0.28", "@types/react-redux": "^7.1.25", "@typescript-eslint/eslint-plugin": "^2.10.0", "@typescript-eslint/parser": "^2.10.0", "babel-loader": "^9.1.2", "compression-webpack-plugin": "^10.0.0", "copy-webpack-plugin": "^11.0.0", "css-loader": "^6.7.3", "eslint": "^6.7.2", "eslint-config-airbnb": "^18.0.1", "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-typescript": "^2.5.0", "eslint-plugin-chai-friendly": "^0.5.0", "eslint-plugin-import": "^2.19.0", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-prettier": "^3.4.1", "eslint-plugin-react": "^7.17.1", "eslint-plugin-react-hooks": "^2.3.0", "html-webpack-plugin": "^5.5.0", "husky": "^8.0.1", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "prettier": "^2.8.4", "sass": "^1.58.3", "sass-loader": "^13.2.0", "style-loader": "^3.3.1", "ts-loader": "^9.4.2", "typescript": "^4.9.5", "webpack": "^5.76.0", "webpack-bundle-analyzer": "^4.8.0", "webpack-cli": "^5.0.1", "webpack-dev-server": "^4.11.1" }, "lint-staged": { "*.{js,jsx,ts,tsx,css,scss,md}": [ "yarn prettier:write" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } } }