2024-11-05 22:33:43 +01:00
|
|
|
{
|
2024-12-01 21:40:17 +01:00
|
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
|
|
|
"name": "colanode",
|
2024-11-05 22:33:43 +01:00
|
|
|
"description": "Colanode monorepo",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"private": true,
|
2024-11-16 16:55:45 +01:00
|
|
|
"workspaces": [
|
|
|
|
|
"packages/*",
|
|
|
|
|
"apps/*"
|
|
|
|
|
],
|
2024-11-05 22:33:43 +01:00
|
|
|
"author": "Hakan Shehu",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/colanode/colanode"
|
|
|
|
|
},
|
2024-12-01 23:51:33 +01:00
|
|
|
"packageManager": "npm@10.9.0",
|
2024-11-05 22:33:43 +01:00
|
|
|
"scripts": {
|
|
|
|
|
"compile": "turbo run compile",
|
|
|
|
|
"build": "turbo run build",
|
|
|
|
|
"clean": "turbo run clean",
|
|
|
|
|
"dev": "turbo run dev",
|
2024-11-10 11:54:15 +01:00
|
|
|
"watch": "turbo watch build --filter=@colanode/{core,crdt,server}",
|
2024-11-05 22:33:43 +01:00
|
|
|
"lint": "turbo run lint --parallel",
|
|
|
|
|
"test": "turbo run test -- --watch false",
|
|
|
|
|
"format": "prettier --write ."
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-12-01 23:51:33 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.16.0",
|
|
|
|
|
"eslint": "^8.57.1",
|
|
|
|
|
"eslint-plugin-import": "^2.31.0",
|
2024-12-01 23:59:41 +01:00
|
|
|
"eslint-plugin-react": "^7.37.2",
|
2024-12-01 21:40:17 +01:00
|
|
|
"prettier": "^3.4.1",
|
|
|
|
|
"turbo": "^2.3.3",
|
|
|
|
|
"typescript": "^5.7.2",
|
|
|
|
|
"vitest": "^2.1.6"
|
2024-11-05 22:33:43 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"lodash-es": "^4.17.21"
|
|
|
|
|
}
|
|
|
|
|
}
|