aboutsummaryrefslogtreecommitdiffstats
path: root/packages/trpc/package.json
blob: 43792d9aa450aa24fd591aba04851175f90fc359 (plain) (blame)
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
35
36
37
38
{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@karakeep/trpc",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "scripts": {
    "typecheck": "tsc --noEmit",
    "format": "prettier . --ignore-path ../../.prettierignore",
    "format:fix": "prettier . --write --ignore-path ../../.prettierignore",
    "lint": "oxlint .",
    "lint:fix": "oxlint . --fix",
    "test": "vitest"
  },
  "dependencies": {
    "@karakeep/db": "workspace:*",
    "@karakeep/shared": "workspace:*",
    "@trpc/server": "11.0.0",
    "bcryptjs": "^2.4.3",
    "deep-equal": "^2.2.3",
    "drizzle-orm": "^0.38.3",
    "prom-client": "^15.1.3",
    "nodemailer": "^7.0.4",
    "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": "^1.6.1"
  },
  "prettier": "@karakeep/prettier-config"
}