-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
140 lines (140 loc) · 4.71 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "product-docs-36c9",
"private": true,
"license": "MIT",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"build:server": "tsx ./scripts/build-server.ts",
"dev": "run-p dev:*",
"dev:remix": "remix dev -c \"npm run dev-server\" --manual",
"dev-server": "cross-env MOCKS=true tsx watch --clear-screen=false --ignore \"app/**\" --ignore \"docs-build/**\" --ignore \"node_modules/**\" ./docs-index.js",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:files": "ts-node --esm scripts/lint-file-case.ts",
"start": "cross-env NODE_ENV=production node docs-index.js",
"typecheck": "tsc",
"validate": "run-p lint typecheck test",
"lint-staged": "lint-staged",
"build-crd": "ts-node --esm scripts/crd-builder/index.ts /Users/wking/sites/crunchy/savannah/config/crd/bases /Users/wking/sites/crunchy/crunchy-postgres-for-kubernetes-docs/documentation/references/crd/5.0.x",
"migrate-docs": "ts-node --esm scripts/migrate-docs.ts /Users/wking/sites/crunchy/crunchy-postgres-automation-docs/documentation/2.0",
"build-config": "ts-node --esm scripts/config-builder/index.ts /Users/wking/sites/crunchy/savannah/docs/config.toml /Users/wking/sites/crunchy/crunchy-postgres-for-kubernetes-private-docs/public/5.2.0"
},
"lint-staged": {
"*.mdx": "npm run lint:files"
},
"eslintIgnore": [
"/node_modules",
"/docs-build",
"/docs-public/build",
"/playwright-report",
"/docs-server-build"
],
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@react-pdf/renderer": "^3.1.12",
"@remix-run/css-bundle": "2.5.1",
"@remix-run/express": "2.5.1",
"@remix-run/node": "2.5.1",
"@remix-run/react": "2.5.1",
"@remix-run/server-runtime": "2.5.1",
"address": "^1.2.2",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"close-with-grace": "^1.2.0",
"clsx": "^1.2.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"esbuild": "^0.20.0",
"escape-string-regexp": "^5.0.0",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"gray-matter": "^4.0.3",
"hast-util-heading-rank": "^2.1.1",
"hast-util-is-element": "^2.1.3",
"hast-util-to-text": "^3.1.2",
"isbot": "^3.6.10",
"lru-cache": "^7.18.3",
"lunr": "^2.3.9",
"mdast-util-from-markdown": "^1.3.1",
"mdast-util-mdx-jsx": "^2.1.4",
"mdx-bundler": "^9.2.1",
"morgan": "^1.10.0",
"path-to-regexp": "^6.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark": "^14.0.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-prism": "^1.3.6",
"semver": "^7.5.1",
"strip-markdown": "^5.0.1",
"tiny-invariant": "^1.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@remix-run/dev": "2.5.1",
"@remix-run/eslint-config": "2.5.1",
"@remix-run/serve": "2.5.1",
"@remix-run/testing": "2.5.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@total-typescript/ts-reset": "^0.4.2",
"@types/compression": "^1.7.2",
"@types/eslint": "^8.37.0",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.5",
"@types/lunr": "^2.3.4",
"@types/morgan": "^1.9.4",
"@types/node": "^20.12.7",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/remark-prism": "^1.3.4",
"@types/semver": "^7.5.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.14",
"c8": "^7.13.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-mdx": "^2.1.0",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-spellcheck": "^0.0.20",
"execa": "^7.1.1",
"glob": "^7.2.3",
"js-yaml": "^4.1.0",
"jsdom": "^22.0.0",
"lint-staged": "^13.2.2",
"loading-cli": "^1.1.0",
"msw": "^1.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.3.2",
"toml": "^3.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.3",
"vfile-matter": "^4.0.1"
},
"engines": {
"node": "20"
}
}