-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.16 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
{
"name": "code-craft",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:python": "cd apps/executor && source venv/bin/activate && uvicorn main:app --reload",
"dev:celery": "cd apps/executor && source venv/bin/activate && celery -A code.celery_app worker --loglevel=info",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "npx prisma generate --schema=packages/db/prisma/schema.prisma",
"db:migrate": "npx prisma migrate deploy --schema=packages/db/prisma/schema.prisma",
"db:seed": "npx tsx packages/db/seed.ts",
"start:web": "cd apps/web && yarn run start",
"start:sub": "cd apps/submission-webhook && yarn run start"
},
"devDependencies": {
"prettier": "^3.2.5",
"prisma": "^6.4.1",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "5.5.4",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.22.22",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@prisma/client": "^6.4.1",
"concurrently": "^9.1.2"
}
}