-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 3.02 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 3.02 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "cross-env SKIP_ENV_VALIDATION=1 yarn workspaces foreach --all --topological run build",
"test": "yarn workspaces foreach --all --topological run test",
"dev": "concurrently --kill-others --names \"zoekt,worker,web,schemas\" 'yarn dev:zoekt' 'yarn dev:backend' 'yarn dev:web' 'yarn watch:schemas'",
"with-env": "cross-env PATH=\"$PWD/bin:$PATH\" dotenv -e .env.development -c --",
"dev:zoekt": "yarn with-env zoekt-webserver -index .sourcebot/index -rpc",
"dev:backend": "yarn with-env yarn workspace @sourcebot/backend dev:watch",
"dev:web": "yarn with-env yarn workspace @sourcebot/web dev",
"watch:schemas": "yarn workspace @sourcebot/schemas watch",
"dev:prisma:migrate:dev": "yarn with-env yarn workspace @sourcebot/db prisma:migrate:dev",
"dev:prisma:generate": "yarn with-env yarn workspace @sourcebot/db prisma:generate",
"dev:prisma:studio": "yarn with-env yarn workspace @sourcebot/db prisma:studio",
"dev:prisma:migrate:reset": "yarn with-env yarn workspace @sourcebot/db prisma:migrate:reset",
"dev:prisma:db:push": "yarn with-env yarn workspace @sourcebot/db prisma:db:push",
"build:deps": "yarn workspaces foreach --recursive --topological --from '{@sourcebot/schemas,@sourcebot/db,@sourcebot/shared,@sourcebot/query-language}' run build",
"openapi:generate": "yarn workspace @sourcebot/web openapi:generate",
"tool:decrypt-jwe": "yarn with-env yarn workspace @sourcebot/web tool:decrypt-jwe",
"audit": "yarn npm audit --all --recursive --no-deprecations"
},
"devDependencies": {
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"dotenv-cli": "^8.0.0"
},
"packageManager": "yarn@4.7.0",
"resolutions": {
"prettier": "3.5.3",
"@lezer/common": "1.3.0",
"qs": "^6.14.2",
"rollup": "^4.59.0",
"cacache/glob": "^10.5.0",
"node-gyp/glob": "^10.5.0",
"sucrase/glob": "^10.5.0",
"rimraf@npm:5.0.10/glob": "^10.5.0",
"@opentelemetry/resources": "2.5.1",
"path-to-regexp@0.1.12": "0.1.13",
"path-to-regexp@^8": "^8.4.0",
"picomatch@^4": "^4.0.4",
"esbuild": "^0.27.3",
"js-yaml@npm:^4.1.0": "^4.1.1",
"ajv@npm:^8.0.0": "^8.18.0",
"ajv@npm:^8.17.1": "^8.18.0",
"brace-expansion@npm:^2.0.2": "^2.0.3",
"brace-expansion@npm:^5.0.2": "^5.0.5",
"brace-expansion@npm:^1.1.7": "^1.1.13",
"@react-email/preview-server/next": "^16.2.3",
"@modelcontextprotocol/sdk/hono": "^4.12.14",
"@modelcontextprotocol/sdk/@hono/node-server": "^1.19.13",
"langsmith@npm:>=0.5.0 <1.0.0": "^0.5.19",
"markdown-it@npm:^14.1.0": "^14.1.1",
"yaml@npm:^2.3.4": "^2.8.3",
"yaml@npm:^2.8.0": "^2.8.3",
"ajv@npm:^6.12.4": "^6.14.0",
"smol-toml@npm:^1.6.0": "^1.6.1",
"teeny-request@npm:^10.0.0": "^10.1.2"
}
}