wikipedia-game-solver/packages/react-hooks/package.json

36 lines
1013 B
JSON
Raw Normal View History

2024-07-24 12:35:33 +02:00
{
"name": "@repo/react-hooks",
"version": "1.0.0-staging.3",
2024-07-24 12:35:33 +02:00
"private": true,
"type": "module",
"exports": {
2024-07-30 09:10:02 +02:00
"./useBoolean": "./src/useBoolean.ts",
2024-07-24 12:35:33 +02:00
"./useIsMounted": "./src/useIsMounted.ts"
},
"scripts": {
"lint:eslint": "eslint src --max-warnings 0 --report-unused-disable-directives",
2024-07-30 09:10:02 +02:00
"lint:typescript": "tsc --noEmit",
"test": "vitest run --browser.headless",
"test:ui": "vitest --ui --no-open"
2024-07-24 12:35:33 +02:00
},
"dependencies": {
"react": "catalog:",
"react-dom": "catalog:"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/config-typescript": "workspace:*",
2024-07-30 09:10:02 +02:00
"@testing-library/react": "catalog:",
2024-07-24 12:35:33 +02:00
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@total-typescript/ts-reset": "catalog:",
2024-07-30 09:10:02 +02:00
"@vitest/browser": "catalog:",
"@vitest/coverage-istanbul": "catalog:",
"@vitest/ui": "catalog:",
2024-07-24 12:35:33 +02:00
"eslint": "catalog:",
2024-07-30 09:10:02 +02:00
"playwright": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
2024-07-24 12:35:33 +02:00
}
}