-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.72 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.72 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
70
71
72
73
74
75
76
77
78
79
{
"name": "tradinggoose-studio",
"packageManager": "bun@1.3.11",
"version": "0.0.0",
"private": true,
"license": "AGPL-3.0-only",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:docs": "cd apps/docs && bun run dev",
"dev:next": "cd apps/tradinggoose && bun run dev",
"dev:sockets": "cd apps/tradinggoose && bun run dev:sockets",
"dev:full": "cd apps/tradinggoose && bun run dev:full",
"dev:trigger": "cd apps/tradinggoose && npx trigger.dev@latest dev",
"test": "turbo run test",
"format": "bunx biome format --write .",
"format:check": "bunx biome format .",
"lint": "bunx biome check --write --unsafe .",
"lint:check": "bunx biome check --unsafe .",
"lint:helm": "helm lint ./helm/tradinggoose --strict --values ./helm/tradinggoose/test/values-lint.yaml",
"lint:all": "bun run lint && bun run lint:helm",
"check": "bunx biome check --files-ignore-unknown=true",
"prepare": "bun husky",
"type-check": "turbo run type-check",
"release": "bun run scripts/create-single-release.ts",
"e2b:template:pinets": "bun run scripts/create-e2b-pinets-template.ts",
"db:generate": "cd ./packages/db && drizzle-kit generate --config=./drizzle.config.ts",
"db:migrate": "cd ./packages/db && drizzle-kit migrate --config=./drizzle.config.ts",
"docs:audit": "bun run scripts/audit-docs.ts",
"docs:audit:json": "bun run scripts/audit-docs.ts --json",
"docs:generate": "bun run scripts/doc-gen/index.ts",
"docs:generate:tools": "bun run scripts/doc-gen/index.ts tools",
"docs:generate:triggers": "bun run scripts/doc-gen/index.ts triggers",
"script:indicator": "bun run scripts/indicators/index.ts"
},
"overrides": {
"react": "19.2.4",
"react-dom": "19.2.4",
"drizzle-orm": "^0.44.5",
"postgres": "^3.4.5",
"vite": "6.4.3"
},
"dependencies": {
"@linear/sdk": "40.0.0",
"@t3-oss/env-nextjs": "0.13.4",
"@tanstack/react-query": "5.90.8",
"cronstrue": "3.3.0",
"diff": "9.0.0",
"drizzle-orm": "^0.44.5",
"lightweight-charts": "5.1.0",
"mongodb": "6.19.0",
"parse-diff": "0.12.0",
"pinets": "^0.8.8",
"postgres": "^3.4.5",
"react-day-picker": "^9",
"remark-gfm": "4.0.1",
"socket.io-client": "4.8.1",
"twilio": "5.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.5",
"@next/env": "16.2.6",
"@octokit/rest": "^21.0.0",
"drizzle-kit": "^0.31.4",
"glob": "13.0.6",
"husky": "9.1.7",
"lint-staged": "16.0.0",
"turbo": "2.9.16"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}