-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.06 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
{
"name": "irish-sign-language",
"version": "1.0.0",
"private": true,
"description": "Irish Sign Language Translation App - iOS and Web",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"db:generate": "npm run generate --workspace=@isl/database",
"db:push": "npm run push --workspace=@isl/database",
"db:migrate": "npm run migrate --workspace=@isl/database",
"db:studio": "npm run studio --workspace=@isl/database",
"db:seed": "npm run seed --workspace=@isl/database",
"db:seed:comprehensive": "npm run seed:comprehensive --workspace=@isl/database",
"api:dev": "npm run dev --workspace=@isl/api",
"web:dev": "npm run dev --workspace=@isl/web",
"generate:images": "npx ts-node --project scripts/tsconfig.json scripts/generate-sign-images.ts",
"generate:images:dry": "npx ts-node --project scripts/tsconfig.json scripts/generate-sign-images.ts --dry-run",
"generate:images:alphabet": "npx ts-node --project scripts/tsconfig.json scripts/generate-sign-images.ts --category alphabet",
"generate:images:numbers": "npx ts-node --project scripts/tsconfig.json scripts/generate-sign-images.ts --category numbers",
"generate:flux": "npx ts-node --project scripts/tsconfig.json scripts/generate-sign-images-flux.ts",
"generate:flux:dry": "npx ts-node --project scripts/tsconfig.json scripts/generate-sign-images-flux.ts --dry-run",
"generate:flux:alphabet": "npx ts-node --project scripts/tsconfig.json scripts/generate-sign-images-flux.ts --category alphabet",
"generate:flux:test": "npx ts-node --project scripts/tsconfig.json scripts/generate-sign-images-flux.ts --category alphabet --limit 3 --model schnell"
},
"dependencies": {
"openai": "^4.52.0",
"replicate": "^0.32.1"
},
"devDependencies": {
"@types/node": "^20.11.0",
"ts-node": "^10.9.2",
"turbo": "^2.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "npm@10.0.0"
}