-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.94 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "fluxcore",
"version": "1.0.0",
"private": true,
"description": "A scalable Discord bot boilerplate",
"type": "module",
"scripts": {
"dev": "docker compose --profile full up --build",
"dev:bot": "docker compose --profile bot up --build",
"dev:dashboard": "docker compose --profile dashboard up --build",
"start": "docker compose -f docker-compose.prod.yml --profile full up --build -d",
"start:bot": "docker compose -f docker-compose.prod.yml --profile bot up --build -d",
"start:dashboard": "docker compose -f docker-compose.prod.yml --profile dashboard up --build -d",
"stop": "docker compose --profile full down",
"stop:prod": "docker compose -f docker-compose.prod.yml --profile full down",
"build": "docker compose --profile bot run --rm --no-deps bot pnpm turbo run build",
"typecheck": "docker compose --profile bot run --rm --no-deps bot pnpm turbo run typecheck",
"clean": "docker compose --profile bot run --rm --no-deps bot pnpm turbo run clean",
"test": "docker compose --profile bot run --rm bot pnpm turbo run test",
"test:integration": "docker compose -f docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from test-runner && docker compose -f docker-compose.test.yml down -v",
"test:all": "pnpm test && pnpm test:integration",
"test:watch": "docker compose --profile bot run --rm bot pnpm --filter @fluxcore/bot test:watch",
"test:coverage": "docker compose --profile bot run --rm bot pnpm --filter @fluxcore/bot test:coverage",
"deploy:commands": "docker compose --profile bot run --rm --no-deps bot pnpm turbo run deploy:commands --filter=@fluxcore/bot",
"db:generate": "docker compose --profile bot run --rm --no-deps bot pnpm turbo run db:generate --filter=@fluxcore/database",
"db:migrate": "docker compose --profile bot run --rm bot pnpm --filter @fluxcore/database db:migrate",
"db:deploy": "docker compose --profile bot run --rm bot pnpm --filter @fluxcore/database db:deploy",
"db:studio": "docker compose --profile bot run --rm -p 5555:5555 bot pnpm --filter @fluxcore/database db:studio"
},
"keywords": [
"discord",
"bot",
"typescript"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.28.0",
"devDependencies": {
"turbo": "^2.5.0",
"typescript": "catalog:"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/engines",
"better-sqlite3",
"esbuild",
"prisma"
],
"overrides": {
"undici@<6.24.0": ">=6.24.0",
"i18next-fs-backend@<2.6.6": ">=2.6.6",
"hono@<4.12.4": ">=4.12.4",
"@hono/node-server@<1.19.10": ">=1.19.10",
"effect@<3.20.0": ">=3.20.0",
"fastify@<5.8.5": ">=5.8.5",
"fast-uri@<3.1.2": ">=3.1.2",
"ws@<8.21.0": ">=8.21.0",
"defu@<6.1.5": ">=6.1.5"
},
"auditConfig": {
"ignoreGhsas": [
"GHSA-r5fr-rjxr-66jc",
"GHSA-35jh-r3h4-6jhm"
]
}
}
}