Initiate monorepo

This commit is contained in:
Hakan Shehu
2024-11-05 22:33:43 +01:00
parent 1a39117c73
commit 992066912e
68 changed files with 6305 additions and 5918 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "@colanode",
"description": "Colanode monorepo",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@9.0.4+sha256.caa915eaae9d9aefccf50ee8aeda25a2f8684d8f9d5c6e367eaf176d97c1f89e",
"author": "Hakan Shehu",
"repository": {
"type": "git",
"url": "https://github.com/colanode/colanode"
},
"scripts": {
"compile": "turbo run compile",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"watch": "turbo watch build --filter=@colanode/core --filter=@colanode/server",
"lint": "turbo run lint --parallel",
"test": "turbo run test -- --watch false",
"format": "prettier --write ."
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"prettier": "^3.3.3",
"turbo": "^2.1.3",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}