-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.92 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.92 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@badaitech/chaingraph",
"type": "module",
"version": "0.7.6",
"private": false,
"packageManager": "pnpm@10.23.0",
"license": "BUSL-1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/badaitech/chaingraph.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": "24.11.1"
},
"scripts": {
"clean": "make clean",
"preview": "pnpm --filter chaingraph-backend run start | pnpm --filter chaingraph-frontend run preview",
"build": "turbo run build",
"pre:dev": "turbo run build",
"dev": "turbo run dev --parallel --no-cache",
"build:front": "turbo run build --filter=@badaitech/chaingraph-frontend",
"dev:front": "turbo run dev --filter=@badaitech/chaingraph-frontend",
"dev:execution-worker": "turbo run dev --filter=@badaitech/chaingraph-message-bus",
"build:back": "turbo run build --filter=@badaitech/chaingraph-backend",
"dev:back": "turbo run dev --filter=@badaitech/chaingraph-backend",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "husky",
"migrate": "turbo run migrate --filter=@badaitech/chaingraph-trpc",
"publish-list": "pnpm -r ls --json | jq -r 'map(select(.private != true)) | .[].name'",
"prepublish-check": "pnpm run lint && pnpm run test",
"release": "make publish",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"typecheck": "turbo run typecheck",
"docker:backend": "docker build -f apps/chaingraph-backend/Dockerfile -t chaingraph-backend:latest .",
"docker:frontend": "docker build -f apps/chaingraph-frontend/Dockerfile -t chaingraph-frontend:latest .",
"docker:execution-api": "docker build -f apps/chaingraph-execution-api/Dockerfile -t chaingraph-execution-api:latest .",
"docker:execution-worker": "docker build -f apps/chaingraph-execution-worker/Dockerfile -t chaingraph-execution-worker:latest .",
"docker:build-all": "pnpm run docker:backend & pnpm run docker:frontend & pnpm run docker:execution-api & pnpm run docker:execution-worker & wait"
},
"peerDependencies": {
"superjson": "^2.2.5"
},
"dependencies": {
"decimal.js": "^10.6.0",
"loglevel": "^1.9.2",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"tslog": "^4.10.2",
"uuid": "^13.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@antfu/eslint-config": "^4.19.0",
"@changesets/cli": "^2.29.7",
"@eslint-react/eslint-plugin": "^1.53.1",
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.36.0",
"@swc/core": "^1.15.3",
"@testing-library/jest-dom": "^6.8.0",
"@turbo/codemod": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"bun-types": "^1.3.3",
"c8": "^10.1.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-format": "^1.0.2",
"eslint-plugin-isaacscript": "^4.0.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"eslint-plugin-unicorn": "^61.0.2",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-sort-json": "^4.1.1",
"ts-node": "^10.9.2",
"turbo": "^2.6.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"unplugin-auto-import": "^20.2.0",
"unplugin-swc": "^1.5.7",
"vite": "^7.1.7",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"vitest-tsconfig-paths": "^3.4.1"
}
}