-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.03 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.03 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
{
"name": "ashyk-bilim",
"private": true,
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"dev": "bun run services && turbo run dev",
"dev:web": "cd apps/web && bun run dev",
"dev:api": "cd apps/api && uv run app.py",
"check:contracts": "bun run generate:contracts && git diff --exit-code -- apps/api/openapi.json apps/web/lib/api/generated/schema.ts",
"generate:contracts": "bun run --cwd apps/api generate:contracts && bun run --cwd apps/web generate:contracts",
"services": "docker-compose up -d db redis",
"services:judge0": "docker-compose up -d db redis judge0-workers judge0-server",
"check-types": "turbo run check-types",
"format": "turbo run format",
"lint": "turbo run lint",
"test": "turbo run test",
"taze": "taze -r -w -u -i",
"deploy": "bash ./extra/deploy.sh"
},
"devDependencies": {
"taze": "^19.11.0",
"turbo": "^2.9.7"
},
"packageManager": "bun@1.3.13",
"workspaces": [
"apps/*"
],
"engines": {
"bun": ">=1.3.12"
}
}