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",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
],
|
||||
"devDependencies": {
|
||||
"typescript": "~5.8.3"
|
||||
},
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
{
|
||||
"name": "eussi",
|
||||
"module": "src/index.ts",
|
||||
"name": "@issue/backend",
|
||||
"version": "0.1.0",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "bun --watch src/index.ts --dev --PORT=3000",
|
||||
"start": "bun src/index.ts --PORT=3000",
|
||||
@@ -21,8 +20,12 @@
|
||||
"typescript": "^5"
|
||||
},
|
||||
"dependencies": {
|
||||
"@issue/shared": "workspace:*",
|
||||
"dotenv": "^17.2.3",
|
||||
"drizzle-orm": "^0.45.0",
|
||||
"pg": "^8.16.3"
|
||||
},
|
||||
"engines": {
|
||||
"bun": ">=1.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
{
|
||||
"name": "issue",
|
||||
"private": true,
|
||||
"name": "@issue/frontend",
|
||||
"version": "0.1.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "shared",
|
||||
"name": "@issue/shared",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
|
||||
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