mirror of
https://github.com/colanode/colanode.git
synced 2026-05-18 05:05:03 +02:00
* Update packages * Add missing core and crdt dependencies to client package The client package imports from @colanode/core and @colanode/crdt but didn't declare them in package.json, causing Turbo to not guarantee building them first. This led to TS6305 errors in CI.
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "colanode",
|
|
"description": "Colanode monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"apps/*",
|
|
"scripts"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/colanode/colanode"
|
|
},
|
|
"packageManager": "npm@10.9.0",
|
|
"scripts": {
|
|
"compile": "turbo run compile",
|
|
"build": "turbo run build",
|
|
"clean": "turbo run clean",
|
|
"dev": "turbo run dev",
|
|
"watch": "turbo watch build --filter=@colanode/{core,crdt,server}",
|
|
"lint": "turbo run lint --parallel",
|
|
"test": "turbo run test -- --watch false",
|
|
"format": "prettier --write .",
|
|
"postinstall": "tsx scripts/src/postinstall/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/debug": "^4.1.13",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
"@typescript-eslint/parser": "^8.58.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"prettier": "^3.8.1",
|
|
"tsx": "^4.21.0",
|
|
"turbo": "^2.9.3",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.1.2"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.4.3",
|
|
"lodash-es": "^4.18.1"
|
|
}
|
|
}
|