dappconnect-sdks/apps/web/package.json

43 lines
1.0 KiB
JSON
Raw Normal View History

2023-01-10 11:25:26 +00:00
{
2023-03-13 14:53:21 +00:00
"name": "web",
2023-01-10 11:25:26 +00:00
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "TAMAGUI_TARGET=web vite",
"build": "tsc && TAMAGUI_TARGET=web vite build",
"preview": "TAMAGUI_TARGET=web vite preview",
2023-03-13 20:48:42 +00:00
"lint": "eslint src",
"typecheck": "tsc",
"clean": "rimraf node_modules dist .turbo"
2023-01-10 11:25:26 +00:00
},
"dependencies": {
2023-01-13 14:27:16 +00:00
"@status-im/components": "*",
"@status-im/icons": "*",
"@tamagui/core": "1.36.4",
2023-01-10 11:25:26 +00:00
"react": "^18.2.0",
2023-01-13 14:27:16 +00:00
"react-dom": "^18.2.0",
"react-native-web": "^0.18.12",
"use-resize-observer": "^9.1.0"
2023-01-10 11:25:26 +00:00
},
"devDependencies": {
"@status-im/eslint-config": "*",
"@tamagui/vite-plugin": "1.36.4",
"@types/react": "^18.0.33",
2023-03-13 21:24:39 +00:00
"@types/react-dom": "^18.0.11",
2023-03-13 21:37:38 +00:00
"@vitejs/plugin-react-swc": "^3.2.0",
"next": "^13.4.12",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.3",
"vite": "^4.2.1"
[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 20:30:11 +00:00
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"eslint",
"prettier --write"
],
"*.{md,mdx,yml,yaml,json}": [
"prettier --write"
]
2023-01-10 11:25:26 +00:00
}
}