-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.23 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "solagent",
"private": true,
"workspaces": [
"apps/*",
"services/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "export $(grep -v '^#' .env 2>/dev/null | grep -v '^$' | xargs) && turbo run dev --concurrency 15",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,yml,yaml}\"",
"db:migrate": "turbo run db:migrate --filter=@solagent/db",
"db:seed": "turbo run db:seed --filter=@solagent/db",
"docker:up": "docker compose -f infrastructure/docker/docker-compose.yml up -d",
"docker:down": "docker compose -f infrastructure/docker/docker-compose.yml down",
"infra:up": "docker compose -f infrastructure/docker/docker-compose.yml up -d postgres redis redpanda",
"infra:down": "docker compose -f infrastructure/docker/docker-compose.yml down",
"services:up": "docker compose -f infrastructure/docker/docker-compose.yml -f infrastructure/docker/docker-compose.services.yml up -d",
"services:down": "docker compose -f infrastructure/docker/docker-compose.yml -f infrastructure/docker/docker-compose.services.yml down",
"bootstrap": "bash scripts/bootstrap.sh",
"test:e2e": "vitest run --config tests/vitest.config.ts",
"prepare": "husky",
"devnet:smoke": "bun run scripts/devnet-smoke-test.ts",
"devnet:agent": "bun run scripts/agent-live-test.ts",
"devnet:multi-agent": "bun run scripts/devnet-multi-agent.ts",
"devnet:jupiter": "bun run scripts/test-jupiter-live.ts"
},
"devDependencies": {
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"@types/bun": "^1.3.9",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"hono": "^4.12.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"turbo": "^2.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"packageManager": "bun@1.1.0"
}