73 lines
1.7 KiB
JSON
Executable file
73 lines
1.7 KiB
JSON
Executable file
{
|
|
"name": "@lilith/test-utils",
|
|
"version": "0.1.0",
|
|
"description": "Shared test utilities and vitest presets for lilith-platform packages",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./vitest-presets": "./vitest-presets/index.ts",
|
|
"./vitest-presets/*": "./vitest-presets/*.ts",
|
|
"./setup": "./src/setup/vitest.setup.ts",
|
|
"./vitest.config.base": "./vitest.config.base.ts"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"peerDependencies": {
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^2.0.0",
|
|
"msw": "^2.0.0",
|
|
"@nestjs/common": "^10.0.0",
|
|
"@nestjs/config": "^3.0.0",
|
|
"@nestjs/testing": "^10.0.0",
|
|
"typeorm": "^0.3.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"react-dom": {
|
|
"optional": true
|
|
},
|
|
"@tanstack/react-query": {
|
|
"optional": true
|
|
},
|
|
"msw": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/common": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/config": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/testing": {
|
|
"optional": true
|
|
},
|
|
"typeorm": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@testing-library/jest-dom": "^6.0.0",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/user-event": "^14.0.0",
|
|
"jsdom": "^27.3.0",
|
|
"jsonwebtoken": "^9.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^9.0.7",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|