forked from theopenco/llmgateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.15 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.15 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "llmgateway",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "TURBO_TOKEN=turbotokenoss turbo run build 2>&1",
"build:ci": "TURBO_TOKEN=turbotokenoss turbo run build --concurrency=1 2>&1",
"build:core": "turbo run build --filter=!ui --filter=!docs --filter=!playground --filter=!admin --filter=!code",
"clean": "find . -path \"./node_modules\" -prune -o \\( -type d -name \"dist\" -o -name \".turbo\" -o -name \".source\" -o -name \".vercel\" -o -name \".out\" -o -name \".next-dev\" -o -name \".next\" \\) -exec rm -rf {} +",
"clean:node_modules": "find . -type d -name \"node_modules\" -exec rm -rf {} +",
"dev": "turbo run dev",
"format": "turbo run format 2>&1",
"postinstall": "husky",
"lint": "turbo run lint",
"migrate": "pnpm --filter db migrate",
"migrations": "pnpm --filter db migrations",
"prepare-codex": "mv ~/.nvm ~/.nvm-bak && export PATH=\"${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH\" && . ~/.bashrc && sudo service postgresql start && sudo service redis-server start && sleep 20 && pnpm sync",
"push": "pnpm push-dev && pnpm push-test",
"push-dev": "pnpm --filter db push",
"push-test": "cross-env-shell \"DATABASE_URL=${DATABASE_URL:-postgres://postgres:pw@localhost:5432/test}\" pnpm --filter db push",
"seed": "pnpm --filter db seed",
"setup": "pnpm build:core && docker compose down -v && docker compose up -d && sleep 5 && pnpm push-test && pnpm push-dev && pnpm seed",
"sync": "pnpm push-dev; pnpm push-test",
"test:e2e": "pnpm build:core && cross-env-shell \"DATABASE_URL=${DATABASE_URL:-postgres://postgres:pw@localhost:5432/test}\" E2E_TEST=true vitest run -c vitest/vitest.e2e.config.mts --no-file-parallelism",
"test:unit": "pnpm build:core && cross-env-shell \"DATABASE_URL=${DATABASE_URL:-postgres://postgres:pw@localhost:5432/test}\" vitest run --no-file-parallelism"
},
"commitlint": {
"extends": "@steebchen/commitlint-config"
},
"prettier": "@steebchen/prettier-config",
"devDependencies": {
"@abinnovision/eslint-config-react": "2.2.0",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/npm": "^12.0.1",
"@steebchen/commitlint-config": "^1.5.2",
"@steebchen/eslint-config": "^1.10.1",
"@steebchen/lint-base": "1.0.6",
"@steebchen/prettier-config": "^1.4.2",
"@types/node": "24.3.3",
"commitlint": "19.8.1",
"concurrently": "^9.2.1",
"cross-env-shell": "7.0.3",
"dotenv": "16.5.0",
"esbuild-fix-imports-plugin": "1.0.23",
"eslint": "^9.34.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-relative-import-paths": "1.6.1",
"husky": "^9.1.7",
"lint-staged": "16.0.0",
"nodemon": "3.1.10",
"prettier": "^3.6.2",
"resolve-tspaths": "0.8.23",
"semantic-release": "^24.2.5",
"semantic-release-monorepo": "8.0.2",
"sort-package-json": "3.4.0",
"sql.js": "1.13.0",
"tsc-watch": "7.2.0",
"tsx": "4.20.6",
"turbo": "^2.7.2",
"typescript": "5.9.2",
"vite": "^7.1.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.5"
},
"disabledLinters": [
"eslint-plugin-tailwindcss"
],
"pnpm": {
"overrides": {
"shiki": "3.22.0"
}
}
}