-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
77 lines (77 loc) · 2.28 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": "zuplo-docs",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "nodemon --exec next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap",
"build:scripts": "node ./scripts/build.mjs",
"format": "prettier --write .",
"typecheck": "tsc",
"postinstall": "npm run get-policies",
"get-policies": "sh ./scripts/get-policies.sh",
"ci:policies": "node ./scripts/build.mjs && node --enable-source-maps ./scripts/update-policies.main.mjs"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@headlessui/react": "^1.7.13",
"@inkeep/widgets": "^0.2.286",
"@tailwindcss/typography": "^0.5.7",
"@types/json-schema": "^7.0.15",
"@types/mdast": "^4.0.3",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/unist": "^2.0.10",
"@typescript-eslint/parser": "^6.19.0",
"@vercel/speed-insights": "^1.0.10",
"autoprefixer": "^10.4.12",
"clsx": "^1.2.1",
"cookies-next": "^4.1.1",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"hastscript": "^7.2.0",
"lucide-react": "^0.308.0",
"mdast-util-to-string": "^3.2.0",
"next": "^14.1.1",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.2.3",
"next-themes": "^0.2.1",
"posthog-js": "^1.139.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.13.0",
"rehype-rewrite": "^3.0.6",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.4",
"remark-gfm": "^3.0.1",
"remark-rehype": "^10.1.0",
"sharp": "^0.33.2",
"shiki": "^1.2.0",
"simple-functional-loader": "^1.2.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.2.2",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2",
"zustand": "^4.4.7"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.1.1",
"esbuild": "^0.19.11",
"eslint": "^8.51.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14"
},
"overrides": {
"@types/mdast": "^4.0.3",
"@types/unist": "^2.0.10"
}
}