-
Notifications
You must be signed in to change notification settings - Fork 477
/
package.json
91 lines (91 loc) · 2.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "streamlit-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"sitemap": "next-sitemap",
"export": "next build",
"offline-docs": "node ./scripts/build-offline-docs.js && node ./scripts/merge-pdfs.js",
"prepare": "husky install"
},
"dependencies": {
"@mapbox/rehype-prism": "^0.9.0",
"@svgr/webpack": "^8.1.0",
"@tryghost/content-api": "1.11.20",
"algoliasearch": "^3.35.1",
"file-loader": "^6.2.0",
"focus-trap-react": "^10.2.3",
"framer-motion": "^10.16.16",
"frontmatter-markdown-loader": "^3.7.0",
"gray-matter": "^4.0.3",
"html-to-text": "^9.0.5",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"next": "^14.2.12",
"next-mdx-remote": "^4.4.1",
"next-remote-watch": "^2.0.0",
"next-sitemap": "^4.2.3",
"node-html-parser": "^6.1.11",
"nprogress": "^0.2.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-instantsearch-dom": "^6.40.4",
"react-intersection-observer": "^9.5.3",
"react-markdown": "^9.0.1",
"react-responsive": "^9.0.2",
"react-slick": "^0.29.0",
"react-transition-group": "^4.4.5",
"rehype-autolink-headings": "^7.1.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-toc": "^3.0.2",
"remark": "^15.0.1",
"remark-gfm": "3.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"remark-unwrap-images": "^4.0.0",
"slick-carousel": "^1.8.1",
"slugify": "^1.6.6",
"unified": "^11.0.4",
"uuid": "^9.0.1"
},
"dependencyComments": {
"remark-gfm": "Keep pinned to 3.0.1 until https://github.com/hashicorp/next-mdx-remote/issues/403 is resolved. See https://github.com/streamlit/docs/pull/924"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@netlify/plugin-nextjs": "^4.41.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"is-pdf-valid": "^0.0.1",
"lint-staged": "^15.2.9",
"pdf-merger-js": "^4.3.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"puppeteer": "^22.11.2",
"sass": "^1.69.5",
"tailwindcss": "^3.4.0"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}