Files
trackgo-fe/packages/configs/eslint/package.json
T
Firman Ramdhani 554c5fbee3 feat: add initial TypeScript and ESLint configurations for library and React applications
- Created TypeScript configuration files for library and React applications.
- Added ESLint configurations for library, React, and Storybook.
- Implemented a basic Button component in the UI package.
- Set up Vite for the docs development environment.
2026-01-09 18:26:12 +07:00

26 lines
597 B
JSON

{
"name": "@repo/eslint-config",
"version": "0.0.0",
"license": "MIT",
"files": [
"library.js",
"react.js",
"storybook.js"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/style-guide": "^5.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.0.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-storybook": "^0.8.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"eslint": "^8.57.0"
}
}