-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"name": "grida",
"private": true,
"license": "Apache 2.0",
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=./packages/*",
"dev": "turbo run dev",
"dev:editor": "turbo run dev --filter=./editor",
"dev:packages": "turbo run dev --filter=./packages/*",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"generate": "turbo run generate",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "lefthook install --force",
"publish-packages": "turbo run build test && pnpm lint && changeset version && changeset publish",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@types/node": "^24",
"lefthook": "^2.1.5",
"oxfmt": "^0.44.0",
"oxlint": "^1.60.0",
"tsup": "^8.5.0",
"tsx": "^4",
"turbo": "^2.9.5",
"typescript": "^5",
"vitest": "^4"
},
"resolutions": {},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.24.0",
"pnpm": {
"overrides": {
"@types/react": "19.1.3",
"@types/react-dom": "19.1.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"axios": "1.13.4",
"prosemirror-model": "1.23.0",
"prosemirror-view": "1.36.0",
"next": "16.1.6",
"openai": "6.18.0",
"react": "19.2.3",
"react-dom": "19.2.3"
}
}
}