mirror of
https://github.com/karakeep-app/karakeep.git
synced 2025-12-12 20:35:52 +01:00
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@karakeep/trpc",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"format": "prettier . --cache --ignore-path ../../.prettierignore --check",
|
|
"format:fix": "prettier . --cache --write --ignore-path ../../.prettierignore",
|
|
"lint": "oxlint .",
|
|
"lint:fix": "oxlint . --fix",
|
|
"test": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@karakeep/db": "workspace:*",
|
|
"@karakeep/shared": "workspace:*",
|
|
"@trpc/server": "^11.4.3",
|
|
"bcryptjs": "^2.4.3",
|
|
"deep-equal": "^2.2.3",
|
|
"drizzle-orm": "^0.44.2",
|
|
"liteque": "^0.5.0",
|
|
"nodemailer": "^7.0.4",
|
|
"prom-client": "^15.1.3",
|
|
"stripe": "^18.3.0",
|
|
"superjson": "^2.2.1",
|
|
"tiny-invariant": "^1.3.3",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@karakeep/prettier-config": "workspace:^0.1.0",
|
|
"@karakeep/tsconfig": "workspace:^0.1.0",
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/deep-equal": "^1.0.4",
|
|
"@types/nodemailer": "^6.4.17",
|
|
"vite-tsconfig-paths": "^4.3.1",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"prettier": "@karakeep/prettier-config"
|
|
}
|