aboutsummaryrefslogtreecommitdiffstats
path: root/packages/trpc/package.json
blob: 8cb74f0b88a804cbd68961923d61ca6d2a238e23 (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
39
40
{
  "$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": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "vitest"
  },
  "dependencies": {
    "@karakeep/db": "workspace:*",
    "@karakeep/shared": "workspace:*",
    "@trpc/server": "11.0.0",
    "bcryptjs": "^2.4.3",
    "drizzle-orm": "^0.38.3",
    "superjson": "^2.2.1",
    "tiny-invariant": "^1.3.3",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@karakeep/eslint-config": "workspace:^0.2.0",
    "@karakeep/prettier-config": "workspace:^0.1.0",
    "@karakeep/tsconfig": "workspace:^0.1.0",
    "@types/bcryptjs": "^2.4.6",
    "vite-tsconfig-paths": "^4.3.1",
    "vitest": "^1.6.1"
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@karakeep/eslint-config/base"
    ]
  },
  "prettier": "@karakeep/prettier-config"
}