mirror of
https://github.com/BillyOutlast/posthog.com.git
synced 2026-02-04 03:11:21 +01:00
* wip contributor card * dynamic cards * fetch contributors done * finish search * better search * wip stats * hook chart to api * sort contributors before chart * better loading states * updates * handle tab change query * wip better tooltips * much better info * improvements * better disclaimer * backfilling * lower the bar for level progress
101 lines
3.4 KiB
JSON
101 lines
3.4 KiB
JSON
{
|
|
"name": "posthog.com",
|
|
"description": "Official PostHog website.",
|
|
"version": "1.0.0",
|
|
"author": "PostHog",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/PostHog/posthog.com"
|
|
},
|
|
"keywords": [
|
|
"gatsby"
|
|
],
|
|
"scripts": {
|
|
"build": "cross-env GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
|
|
"start": "gatsby develop",
|
|
"format": "prettier --write \"**/*.{html,js,ts,tsx,json,yml,css,scss}\"",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"typegen": "kea-typegen write ."
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/icons": "^4.1.0",
|
|
"@mdx-js/mdx": "^1.6.19",
|
|
"@mdx-js/react": "^1.6.22",
|
|
"antd": "^3.23.2",
|
|
"chart.js": "^2.9.4",
|
|
"cross-env": "^7.0.3",
|
|
"docsearch.js": "^2.6.3",
|
|
"eslint-plugin-flowtype": "^2.50.3",
|
|
"gatsby": "^2.24.80",
|
|
"gatsby-cli": "^2.12.111",
|
|
"gatsby-image": "^2.2.19",
|
|
"gatsby-plugin-manifest": "^2.2.16",
|
|
"gatsby-plugin-mdx": "^1.2.51",
|
|
"gatsby-plugin-offline": "^2.2.10",
|
|
"gatsby-plugin-postcss": "^3.7.0",
|
|
"gatsby-plugin-posthog": "^1.0.1",
|
|
"gatsby-plugin-react-helmet": "^3.1.7",
|
|
"gatsby-plugin-remove-trailing-slashes": "^2.3.11",
|
|
"gatsby-plugin-sass": "^2.3.16",
|
|
"gatsby-plugin-sharp": "^2.2.22",
|
|
"gatsby-plugin-sitemap": "^2.12.0",
|
|
"gatsby-plugin-typescript": "^2.4.24",
|
|
"gatsby-remark-autolink-headers": "^2.1.10",
|
|
"gatsby-remark-copy-linked-files": "^2.3.2",
|
|
"gatsby-remark-katex": "^3.1.8",
|
|
"gatsby-remark-prismjs": "^3.5.1",
|
|
"gatsby-remark-static-images": "^1.2.1",
|
|
"gatsby-source-filesystem": "^2.1.22",
|
|
"gatsby-transformer-json": "^2.2.8",
|
|
"gatsby-transformer-remark": "^2.8.7",
|
|
"gatsby-transformer-sharp": "^2.2.14",
|
|
"katex": "^0.12.0",
|
|
"kea": "^2.2.2",
|
|
"kea-loaders": "^0.3.0",
|
|
"kea-router": "^0.5.1",
|
|
"kea-typegen": "^0.5.3",
|
|
"node-fetch": "^2.6.1",
|
|
"node-sass": "^4.14.1",
|
|
"postcss": "^8.2.6",
|
|
"prism-react-renderer": "^1.2.0",
|
|
"prismjs": "^1.23.0",
|
|
"query-string": "^6.13.1",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"react-github-btn": "^1.2.0",
|
|
"react-helmet": "^5.2.1",
|
|
"react-leaf-carousel": "^2.0.3",
|
|
"react-markdown": "^5.0.3",
|
|
"react-modal": "^3.11.2",
|
|
"react-redux": "^7.2.1",
|
|
"react-responsive": "^6.1.2",
|
|
"redux": "^4.0.5",
|
|
"reselect": "^4.0.0",
|
|
"typescript": "^4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chart.js": "^2.9.31",
|
|
"@types/mdx-js__react": "^1.5.3",
|
|
"@types/react-helmet": "^6.1.0",
|
|
"@types/react-modal": "^3.10.6",
|
|
"@typescript-eslint/parser": "^4.5.0",
|
|
"eslint": "^7.9.0",
|
|
"eslint-plugin-react": "^7.20.6",
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.12",
|
|
"mem": "^5.1.1",
|
|
"prettier": "^2.1.0",
|
|
"tailwindcss": "^2.0.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "node ./scripts/mdxImportGen && git add src/mdxGlobalComponents.js && lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{html,js,ts,tsx,json,yml,css,scss}": "prettier --write",
|
|
"*.{js,ts,tsx}": "eslint"
|
|
}
|
|
}
|