Files
trackgo-fe/packages/configs/eslint/package.json
T
Firman Ramdhani 914c267e66 feat(tests): add basic arithmetic functions and corresponding tests
- Implemented `add` and `subtract` functions in multiple packages (web, ui, utils).
- Created unit tests for these functions using Vitest in respective test files.
- Updated turbo.json to include a new test pipeline for coverage and watch mode.
2026-01-14 18:35:20 +07:00

27 lines
613 B
JSON

{
"name": "@repo/eslint-config",
"version": "0.0.0",
"license": "MIT",
"files": [
"index.js",
"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"
}
}