stack/package.json
Zai Shi 019738aa64
Added fern docs (#76)
* adding openapi generation

* added optional responses

* added path params

* added request body

* added full openapi file

* fixed crud bug

* fixed small bugs

* added generate-docs script

* added parameter example

* create docs from handler

* improved parse openapi interface

* removed unused

* added endpoint metadata

* added current user handler

* migrated old docs to fern

* 🌿 api set-up (#75)

Co-authored-by: Catherine Deskur <chdeskur@gmail.com>

* added sdk docs

* updated tabs

* improved styling

* added header links

* added tags to docs

* added focus to docs

* added focus to team docs

* improved docs wording

* added discord link

* updated generate-keys docs

* fixed merge error

* added yaml package

* added github actions

* fixed doc gen bug

* added docs lint check

* added doc watch changes

* updated github actions

* fixed action file

* updated publish docs workflow

* added overview page

* fixed action bug

---------

Co-authored-by: fern <126544928+fern-bot@users.noreply.github.com>
Co-authored-by: Catherine Deskur <chdeskur@gmail.com>
2024-06-15 14:04:00 +02:00

67 lines
2.7 KiB
JSON

{
"name": "@stackframe/monorepo",
"version": "0.0.0",
"private": true,
"repository": "",
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"typecheck": "only-allow pnpm && turbo typecheck",
"build": "only-allow pnpm && turbo build",
"build:server": "only-allow pnpm && turbo run build --no-cache --filter=@stackframe/stack-server...",
"build:demo": "only-allow pnpm && turbo run build --no-cache --filter=demo-app...",
"clean": "only-allow pnpm && turbo run clean --no-cache && rimraf --glob **/.next && rimraf --glob **/.turbo && rimraf --glob **/node_modules",
"codegen": "only-allow pnpm && turbo run codegen --no-cache",
"psql:server": "only-allow pnpm && pnpm run --filter=@stackframe/stack-server psql",
"prisma:server": "only-allow pnpm && pnpm run --filter=@stackframe/stack-server prisma",
"dev": "only-allow pnpm && turbo run dev --parallel --continue",
"dev:app": "only-allow pnpm && turbo run dev --continue --filter=@stackframe/dev-app...",
"dev:server": "only-allow pnpm && turbo run dev --continue --filter=@stackframe/stack-server...",
"dev:email": "only-allow pnpm && turbo run email --continue --filter=@stackframe/stack-server...",
"start": "only-allow pnpm && turbo run start --parallel --continue",
"start:server": "only-allow pnpm && turbo run start --continue --filter=@stackframe/stack-server...",
"lint": "only-allow pnpm && turbo run lint --no-cache -- --max-warnings=0",
"release": "only-allow pnpm && release",
"peek": "only-allow pnpm && pnpm release --peek",
"changeset": "only-allow pnpm && changeset",
"test": "only-allow pnpm && turbo run test",
"generate-docs": "only-allow pnpm && turbo run generate-docs --no-cache",
"generate-keys": "only-allow pnpm && turbo run generate-keys --no-cache"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@testing-library/react": "^15.0.2",
"@types/node": "^20.8.10",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"@vitejs/plugin-react": "^4.2.1",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"eslint": "8.30.0",
"eslint-config-next": "^14",
"eslint-config-standard-with-typescript": "^43",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.11",
"jsdom": "^24.0.0",
"only-allow": "^1.2.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"tsup": "^8.0.2",
"turbo": "^1.11.3",
"typescript": "5.3.3",
"vitest": "^1.5.0"
},
"pnpm": {
"overrides": {}
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"dependencies": {
"styled-components": "^6.1.8"
}
}