-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.21 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
{
"name": "jazz-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"starters/*",
"crates/*",
"crates/cojson-core-napi/npm/*"
],
"packageManager": "pnpm@10.16.1",
"engines": {
"node": ">=22.18.0"
},
"devDependencies": {
"@biomejs/biome": "catalog:default",
"@changesets/cli": "^2.29.7",
"@playwright/test": "^1.50.1",
"@vitejs/plugin-react": "^4.5.1",
"@vitest/browser-playwright": "catalog:default",
"@vitest/coverage-v8": "catalog:default",
"@vitest/ui": "catalog:default",
"happy-dom": "^17.4.4",
"jazz-run": "workspace:*",
"jazz-tools": "workspace:*",
"lefthook": "^1.8.2",
"pkg-pr-new": "^0.0.60",
"playwright": "^1.50.1",
"turbo": "^2.3.1",
"typedoc": "^0.25.13",
"vitest": "catalog:default"
},
"scripts": {
"bench": "vitest bench",
"dev": "turbo dev",
"build": "turbo build && cd homepage/homepage && turbo build",
"build:packages": "turbo build --filter='./packages/*'",
"build:napi": "turbo build:napi --",
"build:wasm": "turbo build:wasm --",
"build:rn": "turbo build:rn",
"build:core": "turbo run build:napi build:rn build:wasm",
"build:all-packages": "pnpm build:core && pnpm build:packages",
"lint": "turbo lint && cd homepage/homepage && pnpm run lint",
"test": "vitest --project=!cojson-core-napi",
"test:ci": "vitest run --watch=false",
"test:coverage": "vitest --ui --coverage.enabled=true",
"test:napi": "vitest --project=cojson-core-napi",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"changeset": "changeset",
"changeset-version": "changeset version && pnpm i --no-frozen-lockfile",
"release": "turbo run build:napi && turbo run build --filter='./packages/*' && pnpm changeset publish && git push --follow-tags",
"release:backports": "turbo run build --filter='./packages/*' && pnpm changeset publish --tag backport && git push --follow-tags",
"clean": "rm -rf ./packages/*/dist && rm -rf ./packages/*/node_modules && rm -rf ./examples/*/node_modules && rm -rf ./examples/*/dist",
"postinstall": "lefthook install"
},
"version": "0.0.0",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
},
"overrides": {
"@types/react": "catalog:react",
"@types/react-dom": "catalog:react",
"react": "catalog:react",
"react-dom": "catalog:react",
"vite": "catalog:default",
"esbuild": "0.24.0",
"form-data": ">=4.0.4",
"happy-dom": ">=20.0.0",
"rfc6902": ">=5.0.0",
"better-auth": "^1.4.7",
"next": "catalog:next"
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"@clerk/shared",
"@parcel/watcher",
"@swc/core",
"@tailwindcss/oxide",
"better-sqlite3",
"browser-tabs-lock",
"core-js",
"edgedriver",
"esbuild",
"geckodriver",
"lefthook",
"msw",
"react-native-nitro-modules",
"sharp",
"workerd"
],
"patchedDependencies": {
"uniffi-bindgen-react-native@0.29.3-1": "patches/uniffi-bindgen-react-native@0.29.3-1.patch"
}
}
}