npm doesn't support the `workspace:*` protocol (that's pnpm/Yarn). This caused `npm install` to fail with EUNSUPPORTEDPROTOCOL during Docker builds. Replaced both occurrences with `file:` relative paths that npm workspaces resolves correctly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
659 B
JSON
29 lines
659 B
JSON
{
|
|
"name": "@dynamic-sites/server",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@dynamic-sites/shared": "file:../shared",
|
|
"better-sqlite3": "^11.8.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^5.1.0",
|
|
"express-rate-limit": "^7.5.0",
|
|
"pino": "^9.6.0",
|
|
"pino-pretty": "^13.0.0",
|
|
"zod": "^3.24.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^5.0.2",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.8.0"
|
|
}
|
|
}
|