mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 08:15:38 +02:00
Adds `/blog` page with support for `.md` and `.mdx` files. What we learnt in setting this up will be packages in a package `@nestri/mdx` and used to set up the `/docs` and the `/terms` and `/privacy` routes
33 lines
637 B
JSON
33 lines
637 B
JSON
{
|
|
"name": "nestri",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"dev": "turbo dev",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"lint": "turbo lint"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "4.20240821.1",
|
|
"@types/aws-lambda": "8.10.145",
|
|
"prettier": "^3.2.5",
|
|
"turbo": "^2.0.12",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"packageManager": "bun@1.1.18",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"trustedDependencies": [
|
|
"core-js-pure",
|
|
"esbuild",
|
|
"workerd"
|
|
],
|
|
"dependencies": {
|
|
"sst": "3.0.94"
|
|
}
|
|
} |