Files
edr-platform/packages/iam-seed/package.json
2026-07-27 08:42:27 +00:00

51 lines
1.2 KiB
JSON

{
"name": "@edr/iam-seed",
"version": "0.0.0",
"private": true,
"description": "Shared IAM baseline seeder for the apps that share the `iam` schema",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -w -p tsconfig.json",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"test": "jest"
},
"dependencies": {
"argon2": "^0.43.1"
},
"peerDependencies": {
"@nestjs/common": "^11.0.0",
"reflect-metadata": "^0.2.0",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@edr/eslint-config": "workspace:*",
"@edr/tsconfig": "workspace:*",
"@nestjs/common": "^11.0.0",
"@types/jest": "^29.5.13",
"@types/node": "^20.14.0",
"jest": "^29.7.0",
"reflect-metadata": "^0.2.2",
"ts-jest": "^29.2.5",
"typeorm": "^0.3.20",
"typescript": "^5.5.4"
},
"jest": {
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
}
}