File size: 841 Bytes
c6302b1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | {
"name": "@xtap-pool/explorer",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --check .",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"dry": "cd .. && slophammer-ts dry .",
"mutate": "stryker run"
},
"dependencies": {
"@xtap-pool/shared": "*",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.8",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"jsdom": "^28.0.0",
"tailwindcss": "^4.2.8",
"vite": "^7.3.4"
}
}
|