-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.23 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
{
"name": "dev-docs",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "NODE_OPTIONS=--max_old_space_size=7168 astro build",
"preview": "astro preview",
"astro": "astro",
"clean": "rm -rf dist",
"prepare": "husky"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.mdx": "prettier --write",
"*.yml": "prettier --write",
"*.json": "prettier --write",
"*.astro": "prettier --write",
"*.mdoc": "node markdoc-formatter.mjs"
},
"dependencies": {
"@adjust/components": "^17.1.0",
"@astrojs/markdoc": "^0.11.5",
"@astrojs/mdx": "^3.1.9",
"@astrojs/react": "^3.6.3",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@expressive-code/plugin-collapsible-sections": "^0.38.3",
"@expressive-code/plugin-line-numbers": "^0.38.3",
"@nanostores/persistent": "^0.10.2",
"@nanostores/react": "^0.8.2",
"@octokit/core": "^6.1.2",
"astro": "^4.16.16",
"astro-auto-import": "^0.4.4",
"astro-expressive-code": "^0.38.3",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"marked": "^14.1.4",
"nanostores": "^0.11.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-instantsearch": "^7.13.8",
"react-markdown": "^9.0.1",
"rehype": "^13.0.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-raw": "^7.0.0",
"remark-custom-heading-id": "^2.0.0",
"remark-definition-list": "^2.0.0",
"tailwindcss": "^3.4.15",
"typesense-instantsearch-adapter": "^2.8.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.11.0",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/mdast": "^4.0.4",
"@types/node": "^20.17.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/unist": "^3.0.3",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"prettier-plugin-astro": "^0.14.1",
"tiny-decode": "^0.1.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}