sourcebot/package.json

19 lines
700 B
JSON
Raw Normal View History

2024-08-23 20:54:13 +00:00
{
2024-10-17 20:31:18 +00:00
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
2025-02-12 21:05:44 +00:00
"dev": "yarn workspace @sourcebot/db prisma:migrate:dev && cross-env npm-run-all --print-label --parallel dev:zoekt dev:backend dev:web",
"dev:zoekt": "export PATH=\"$PWD/bin:$PATH\" && export SRC_TENANT_ENFORCEMENT_MODE=strict && zoekt-webserver -index .sourcebot/index -rpc",
2024-10-17 20:31:18 +00:00
"dev:backend": "yarn workspace @sourcebot/backend dev:watch",
2025-01-23 22:06:40 +00:00
"dev:web": "yarn workspace @sourcebot/web dev"
2024-10-17 20:31:18 +00:00
},
"devDependencies": {
"cross-env": "^7.0.3",
2024-10-17 20:31:18 +00:00
"npm-run-all": "^4.1.5"
}
2024-08-23 20:54:13 +00:00
}