status-web/apps/website/package.json
Pavel b88f7e73da
[website] Add documentation (#403)
* setup md/mdx

* add test page

* setup mdx provider

* Add breadcrumbs

* links -> routes

* add information box

* add more remark plugins

* text InformationBox

* setup contentlayer

* add testing docs folder

* setup docs static generation

* add ssg to blog too

* add Shortcut component

* add SearchButton

* add hook for keyboard shortcuts

* update main docs page

* update main learn page content

* side-bar -> sidebar-menu

* rename docs pages

* add heading anchors, use new components

* add table of contents to docs

* move styling to breadcrumbs

* cleanup markdown examples

* change slugify fn

* update getting-started.md

* add highlight matches component

* update learn pages

* rename website InformationBox to Admonition

* ?enable user-select

* add static helpers to epics

* simplify components structure

* update insights layout

* add link tree utils

* add search engine

* update docs import

* update contenlayer

* add docs indexer

* support code block highlighting

* search index

* fix types

* remove supporting files

* update tree builder

* make build work

* update docs

* update label

* update toc

* add config.json

* update menu

* search index import

* learn -> help

* fix md file

* update toc

* fix code snippets

* add help index route

* remove testing files

* add original docs

* migrate getting started

* migrate messaging-and-web3-browser docs

* migrate network-nodes-and-statistics docs

* handle empty content

* add navigation config

* wip

* migrate status-wallet docs

* migrate to new admonitions format

* migrate your-profile-and-preferences docs

* migrate part of status-communities docs

* mv

* rm log

* index

* fix lint

* fix warn

* fix title

* fix docs layout

* udpate next.config

* use lowercase lang

* generate contentlayer types before typechecking

* update docs images

* update help routes

---------

Co-authored-by: Felicio Mununga <felicio@users.noreply.github.com>
2023-06-27 21:30:11 +01:00

97 lines
2.7 KiB
JSON

{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "contentlayer build && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "contentlayer build && tsc",
"clean": "rimraf .next .tamagui .turbo .vercel/output node_modules",
"preview": "next start --port 8151"
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@react-spring/web": "^9.7.2",
"@scure/base": "^1.1.1",
"@status-im/colors": "*",
"@status-im/components": "*",
"@status-im/icons": "*",
"@status-im/js": "*",
"@tamagui/next-theme": "1.11.1",
"@visx/visx": "^2.18.0",
"@vercel/og": "^0.5.4",
"class-variance-authority": "^0.6.0",
"contentlayer": "^0.3.3",
"@tanstack/react-query": "^4.29.7",
"@tryghost/content-api": "^1.11.13",
"d3-array": "^3.2.3",
"d3-time-format": "^4.1.0",
"date-fns": "^2.30.0",
"highlight-words-core": "^1.2.2",
"minisearch": "^6.1.0",
"next": "13.2.4",
"next-contentlayer": "^0.3.3",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native-web": "^0.18.12",
"tinykeys": "^1.4.0",
"title": "^3.5.3",
"github-slugger": "^2.0.0",
"ts-pattern": "^4.3.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@achingbrain/ssdp": "^4.0.1",
"@tailwindcss/typography": "^0.5.9",
"@tamagui/next-plugin": "1.11.1",
"@types/d3-array": "^3.0.4",
"@types/d3-time-format": "^4.0.0",
"@types/highlight-words-core": "^1.2.1",
"@types/node": "^18.11.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/title": "^3.4.1",
"@vcarl/remark-headings": "^0.1.0",
"autoprefixer": "^10.4.14",
"mdast-util-to-string": "^3.2.0",
"postcss": "^8.4.21",
"remark": "^14.0.3",
"remark-breaks": "^3.0.3",
"remark-directive": "^2.0.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-github-beta-blockquote-admonitions": "^1.1.0",
"rehype-slug": "^5.1.0",
"rehype-pretty-code": "^0.9.7",
"strip-markdown": "^5.0.1",
"shiki": "^0.14.2",
"tailwindcss": "^3.3.1",
"tailwindcss-animate": "^1.0.5",
"typescript": "^5.0.3",
"unist-util-visit": "^4.1.2",
"@types/tryghost__content-api": "^1.3.11",
"@status-im/eslint-config": "*",
"rehype-parse": "^8.0.4",
"rehype-react": "^7.2.0",
"rehype-stringify": "^9.0.3",
"unified": "^10.1.2"
},
"engines": {
"node": "^18.x"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"eslint",
"prettier --write"
],
"*.{md,mdx,yml,yaml,json}": [
"prettier --write"
]
}
}