mirror of
https://github.com/hex248/sprint.git
synced 2026-02-07 18:23:03 +00:00
proper pnpm workspace configuration
This commit is contained in:
@@ -2,9 +2,6 @@
|
|||||||
"name": "issue-monorepo",
|
"name": "issue-monorepo",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"workspaces": [
|
|
||||||
"packages/*"
|
|
||||||
],
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"typescript": "~5.8.3"
|
"typescript": "~5.8.3"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,28 +1,31 @@
|
|||||||
{
|
{
|
||||||
"name": "eussi",
|
"name": "@issue/backend",
|
||||||
"module": "src/index.ts",
|
"version": "0.1.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"private": true,
|
"scripts": {
|
||||||
"scripts": {
|
"dev": "bun --watch src/index.ts --dev --PORT=3000",
|
||||||
"dev": "bun --watch src/index.ts --dev --PORT=3000",
|
"start": "bun src/index.ts --PORT=3000",
|
||||||
"start": "bun src/index.ts --PORT=3000",
|
"db:start": "docker compose up -d",
|
||||||
"db:start": "docker compose up -d",
|
"db:stop": "docker compose down",
|
||||||
"db:stop": "docker compose down",
|
"db:migrate": "npx drizzle-kit generate && npx drizzle-kit migrate",
|
||||||
"db:migrate": "npx drizzle-kit generate && npx drizzle-kit migrate",
|
"db:push": "npx drizzle-kit push"
|
||||||
"db:push": "npx drizzle-kit push"
|
},
|
||||||
},
|
"devDependencies": {
|
||||||
"devDependencies": {
|
"@types/bun": "latest",
|
||||||
"@types/bun": "latest",
|
"@types/pg": "^8.15.6",
|
||||||
"@types/pg": "^8.15.6",
|
"drizzle-kit": "^0.31.8",
|
||||||
"drizzle-kit": "^0.31.8",
|
"tsx": "^4.21.0"
|
||||||
"tsx": "^4.21.0"
|
},
|
||||||
},
|
"peerDependencies": {
|
||||||
"peerDependencies": {
|
"typescript": "^5"
|
||||||
"typescript": "^5"
|
},
|
||||||
},
|
"dependencies": {
|
||||||
"dependencies": {
|
"@issue/shared": "workspace:*",
|
||||||
"dotenv": "^17.2.3",
|
"dotenv": "^17.2.3",
|
||||||
"drizzle-orm": "^0.45.0",
|
"drizzle-orm": "^0.45.0",
|
||||||
"pg": "^8.16.3"
|
"pg": "^8.16.3"
|
||||||
}
|
},
|
||||||
|
"engines": {
|
||||||
|
"bun": ">=1.0.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,36 +1,35 @@
|
|||||||
{
|
{
|
||||||
"name": "issue",
|
"name": "@issue/frontend",
|
||||||
"private": true,
|
"version": "0.1.0",
|
||||||
"version": "0.1.0",
|
"type": "module",
|
||||||
"type": "module",
|
"scripts": {
|
||||||
"scripts": {
|
"dev": "vite",
|
||||||
"dev": "vite",
|
"build": "tsc && vite build",
|
||||||
"build": "tsc && vite build",
|
"preview": "vite preview",
|
||||||
"preview": "vite preview",
|
"tauri": "tauri"
|
||||||
"tauri": "tauri"
|
},
|
||||||
},
|
"dependencies": {
|
||||||
"dependencies": {
|
"@radix-ui/react-slot": "^1.2.4",
|
||||||
"@radix-ui/react-slot": "^1.2.4",
|
"@tailwindcss/vite": "^4.1.18",
|
||||||
"@tailwindcss/vite": "^4.1.18",
|
"@tauri-apps/api": "^2",
|
||||||
"@tauri-apps/api": "^2",
|
"@tauri-apps/plugin-opener": "^2",
|
||||||
"@tauri-apps/plugin-opener": "^2",
|
"class-variance-authority": "^0.7.1",
|
||||||
"class-variance-authority": "^0.7.1",
|
"clsx": "^2.1.1",
|
||||||
"clsx": "^2.1.1",
|
"lucide-react": "^0.561.0",
|
||||||
"lucide-react": "^0.561.0",
|
"react": "^19.1.0",
|
||||||
"react": "^19.1.0",
|
"react-dom": "^19.1.0",
|
||||||
"react-dom": "^19.1.0",
|
"react-router-dom": "^7.10.1",
|
||||||
"react-router-dom": "^7.10.1",
|
"tailwind-merge": "^3.4.0",
|
||||||
"tailwind-merge": "^3.4.0",
|
"tailwindcss": "^4.1.18"
|
||||||
"tailwindcss": "^4.1.18"
|
},
|
||||||
},
|
"devDependencies": {
|
||||||
"devDependencies": {
|
"@tauri-apps/cli": "^2",
|
||||||
"@tauri-apps/cli": "^2",
|
"@types/node": "^25.0.1",
|
||||||
"@types/node": "^25.0.1",
|
"@types/react": "^19.1.8",
|
||||||
"@types/react": "^19.1.8",
|
"@types/react-dom": "^19.1.6",
|
||||||
"@types/react-dom": "^19.1.6",
|
"@vitejs/plugin-react": "^4.6.0",
|
||||||
"@vitejs/plugin-react": "^4.6.0",
|
"tw-animate-css": "^1.4.0",
|
||||||
"tw-animate-css": "^1.4.0",
|
"typescript": "~5.8.3",
|
||||||
"typescript": "~5.8.3",
|
"vite": "^7.0.4"
|
||||||
"vite": "^7.0.4"
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "shared",
|
"name": "@issue/shared",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"packageManager": "pnpm@10.17.1"
|
"packageManager": "pnpm@10.17.1"
|
||||||
}
|
}
|
||||||
|
|||||||
2539
pnpm-lock.yaml
generated
2539
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
2
pnpm-workspace.yaml
Normal file
2
pnpm-workspace.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
packages:
|
||||||
|
- "packages/*"
|
||||||
Reference in New Issue
Block a user