* docs improvements and changes * updated module definition * modules + dml changes * fix build * fix vale error * fix lint errors * fixes to stripe docs * fix condition * fix condition * fix module defintion * fix checkout * disable UI action * change oas preview action * flatten provider module options * fix lint errors * add module link docs * pr comments fixes * fix vale error * change node engine version * links -> linkable * add note about database name * small fixes * link fixes * fix response code in api reference * added migrations step
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "book",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"dev:monorepo": "yarn dev -p 3001",
|
|
"build": "next build",
|
|
"build:dev": "NODE_ENV=test next build",
|
|
"start": "next start",
|
|
"start:monorepo": "yarn start -p 3001",
|
|
"lint": "next lint --fix",
|
|
"lint:content": "eslint --no-eslintrc -c .content.eslintrc.js app/**/*.mdx --fix"
|
|
},
|
|
"dependencies": {
|
|
"@mdx-js/loader": "^3.0.0",
|
|
"@mdx-js/react": "^3.0.0",
|
|
"@next/mdx": "^14.2.3",
|
|
"clsx": "^2.1.0",
|
|
"docs-ui": "*",
|
|
"next": "14.2.3",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"rehype-mdx-code-props": "^2.0.0",
|
|
"rehype-slug": "^6.0.0",
|
|
"remark-rehype-plugins": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mdx": "^2.0.10",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"autoprefixer": "^10.0.1",
|
|
"eslint": "^8",
|
|
"eslint-config-docs": "*",
|
|
"eslint-config-next": "14.2.3",
|
|
"postcss": "^8",
|
|
"tailwind": "*",
|
|
"tailwindcss": "^3.3.0",
|
|
"tsconfig": "*",
|
|
"types": "*",
|
|
"typescript": "^5"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|