-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.47 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.47 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
{
"name": "researchhive-ai",
"version": "1.0.0",
"private": true,
"description": "AI-Powered Research Platform with Multi-Agent Intelligence",
"author": "Kingsley Obi",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck",
"db:generate": "cd packages/database && pnpm db:generate",
"db:push": "cd packages/database && pnpm db:push",
"db:migrate": "cd packages/database && pnpm db:migrate",
"db:studio": "cd packages/database && pnpm db:studio",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:ps": "docker-compose ps",
"k8s:apply": "kubectl apply -f k8s/",
"k8s:delete": "kubectl delete -f k8s/",
"setup": "cp .env.example .env && pnpm install && pnpm db:generate"
},
"devDependencies": {
"@turbo/gen": "^1.11.2",
"turbo": "^1.11.2",
"typescript": "^5.3.3",
"prettier": "^3.1.1",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0"
},
"packageManager": "pnpm@8.14.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
}
}