forked from AnswerOverflow/AnswerOverflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.47 KB
/
package.json
File metadata and controls
41 lines (41 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
{
"name": "answer-overflow",
"version": "1.0.0",
"sideEffects": false,
"scripts": {
"dev": "turbo dev --continue",
"dev:dbs": "docker-compose -f \"docker-compose.yml\" -f \"docker-compose-extras.yml\" up",
"typecheck": "turbo typecheck",
"clean": "bun --filter=* clean && rm -rf node_modules",
"format": "biome check . --write",
"format:check": "biome check .",
"start": "turbo start",
"build:prod": "turbo build:prod",
"with-env": "bun run --env-file=../../.env --",
"docker:build:discord-bot": "bun with-env docker build -f ./apps/discord-bot/Dockerfile -t discord-bot:latest .",
"docker:run:discord-bot": "bun with-env docker rm -f discord-bot || true && dotenv -e .env -- docker run -it --name discord-bot discord-bot:latest"
},
"dependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"sst": "^3.1.43",
"turbo": "^2.1.3",
"typescript": "^5.1.6"
},
"workspaces": ["packages/*", "apps/*"],
"patchedDependencies": {
"simple-markdown@0.7.3": "patches/simple-markdown@0.7.3.patch",
"@opentelemetry/otlp-exporter-base@0.52.0": "patches/@opentelemetry__otlp-exporter-base@0.52.0.patch",
"@tremor/react@3.18.3": "patches/@tremor%2Freact@3.18.3.patch",
"next-auth@4.23.1": "patches/next-auth@4.23.1.patch"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@cloudflare/workers-types": "4.20240924.0",
"dotenv": "^16.4.5"
},
"overrides": {
"recharts": "2.13.0",
"react-is": "19.0.0-rc-6f23540c7d-20240528"
},
"packageManager": "bun@1.1.40"
}