Add new payment service with repository, error handling, and validation Add exceptions package with database and validation utilities Update database package with new schema and zod types Add turbo start script for development
21 lines
394 B
JSON
21 lines
394 B
JSON
{
|
|
"name": "@repo/services",
|
|
"version": "0.0.0",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"@repo/db": "*",
|
|
"@repo/exceptions": "*",
|
|
"@repo/utils": "*",
|
|
"neverthrow": "^8.2.0",
|
|
"zod": "^4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/typescript-config": "*",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|