-
Notifications
You must be signed in to change notification settings - Fork 970
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 999 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 999 Bytes
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
{
"scripts": {
"typecheck": "pnpm turbo typecheck",
"format": "pnpm biome format --write",
"test": "pnpm turbo test",
"build": "pnpm turbo build",
"codegen": "pnpm turbo run codegen",
"lint": "pnpm biome check --write && pnpm run -r lint",
"dev": "pnpm run --filter @marimo-team/frontend dev"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@testing-library/jest-dom": "^6.9.1",
"@typescript/native-preview": "7.0.0-dev.20260201.1",
"turbo": "^2.8.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20",
"pnpm": ">=9.15.9"
},
"packageManager": "pnpm@10.28.2",
"pnpm": {
"patchedDependencies": {
"html-to-image@1.11.13": "patches/html-to-image@1.11.13.patch"
},
"overrides": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"vite": "npm:rolldown-vite@7.3.1",
"form-data": ">=4.0.5"
},
"peerDependencyRules": {
"allowedVersions": {
"vite": "7"
}
}
}
}