forked from evoluhq/evolu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.9 KB
/
package.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.9 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
{
"private": true,
"name": "@evolu/monorepo",
"scripts": {
"dev": "turbo --filter @evolu/* dev --filter web --concurrency=11",
"build": "turbo --filter @evolu/* build",
"build:web": "pnpm typedoc && turbo --filter web build",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"start": "turbo start",
"//lint": "No --cache: typescript-eslint doesn't recommend it due to cross-file dependencies",
"lint": "eslint",
"biome": "biome check",
"lint-monorepo": "pnpm dlx sherif@latest",
"verify": "pnpm build && pnpm test && pnpm lint && pnpm biome && pnpm lint-monorepo && pnpm typedoc",
"clean": "turbo clean && rimraf node_modules pnpm-lock.yaml .turbo .eslintcache out",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,md,mdx}\"",
"version": "changeset version",
"release": "pnpm run build && changeset publish",
"ios": "cd examples/react-expo && pnpm ios",
"android": "cd examples/react-expo && pnpm android",
"typedoc": "typedoc && pnpm --filter=web run fix:docs",
"bench": "turbo bench",
"examples:toggle-deps": "node --experimental-strip-types ./scripts/toggle-examples-deps.mts",
"examples:build": "turbo --filter @example/* build",
"examples:react-nextjs:dev": "turbo --filter @example/react-nextjs dev",
"examples:react-vite-pwa:dev": "turbo --filter @example/react-vite-pwa dev",
"examples:svelte-vite-pwa:dev": "turbo --filter @example/svelte-vite-pwa dev",
"examples:vue-vite-pwa:dev": "turbo --filter @example/vue-vite-pwa dev",
"publish:local": "node --experimental-strip-types ./scripts/publish-local.mts"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.36.0",
"@types/inquirer": "^9.0.9",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "9.39.1",
"eslint-plugin-jsdoc": "^61.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"prettier": "^3.7.3",
"prettier-plugin-embed": "^0.5.0",
"prettier-plugin-jsdoc": "^1.3.3",
"prettier-plugin-sql-cst": "^0.16.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"rimraf": "^6.0.0",
"turbo": "^2.5.8",
"typedoc": "^0.28.13",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.24.0",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide",
"better-sqlite3",
"electron",
"electron-winstaller",
"esbuild",
"lmdb",
"msgpackr-extract",
"react-native-nitro-modules",
"sharp",
"unrs-resolver"
],
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
},
"patchedDependencies": {
"@changesets/assemble-release-plan": "patches/@changesets__assemble-release-plan.patch"
}
}
}