forked from chaingraphlabs/chaingraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.26 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.26 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
{
"name": "@badaitech/chaingraph",
"type": "module",
"version": "0.1.28",
"private": false,
"packageManager": "pnpm@10.5.2",
"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": "22.14.0"
},
"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",
"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"
},
"dependencies": {
"@changesets/cli": "^2.28.1",
"@tanstack/react-query": "^5.67.1",
"@tanstack/react-query-devtools": "^5.67.1",
"decimal.js": "^10.5.0",
"devalue": "^5.1.1",
"loglevel": "^1.9.2",
"reflect-metadata": "^0.2.2",
"superjson": "^2.2.2",
"ts-node": "^10.9.2",
"tslog": "^4.9.3",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@eslint-react/eslint-plugin": "^1.41.0",
"@eslint/compat": "^1.2.8",
"@eslint/js": "^9.24.0",
"@swc/core": "^1.11.18",
"@testing-library/jest-dom": "^6.6.3",
"@turbo/codemod": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitest/coverage-v8": "3.1.1",
"@vitest/ui": "^3.1.1",
"bun-types": "^1.2.8",
"c8": "^10.1.3",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-isaacscript": "4.0.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-unicorn": "58.0.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-packagejson": "2.5.10",
"prettier-plugin-sort-json": "4.1.1",
"ts-node": "^10.9.2",
"turbo": "^2.5.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"unplugin-auto-import": "^19.1.2",
"unplugin-swc": "^1.5.1",
"vite": "^6.3.3",
"vite-plugin-node-polyfills": "0.17.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1",
"vitest-tsconfig-paths": "^3.4.1"
}
}