-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 3.51 KB
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
{
"name": "querypie-docs",
"version": "25.08.1",
"private": true,
"description": "QueryPie Docs",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "npm run generate-pagefind && npm run generate-sitemap",
"start": "next start",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"format": "npx prettier --write .",
"generate-pagefind": "pagefind --site .next/server/app --output-path public/_pagefind",
"generate-sitemap": "npx tsx scripts/generate-sitemap/index.ts",
"fetch-openapi-spec": "npx tsx scripts/fetch-openapi-spec/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"build-doc-search-index": "npx tsx scripts/build-doc-search-index/index.ts",
"prebuild": "npm run build-doc-search-index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/querypie/querypie-docs.git"
},
"author": "QueryPie",
"bugs": {
"url": "https://github.com/querypie/querypie-docs/issues"
},
"homepage": "https://github.com/querypie/querypie-docs#readme",
"dependencies": {
"@heroicons/react": "^2.2.0",
"@next/third-parties": "^16.2.6",
"@theguild/remark-mermaid": "^0.3.0",
"js-yaml": "^4.2.0",
"minisearch": "^7.2.0",
"next": "^16.2.6",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"redoc": "^2.5.2",
"styled-components": "^6.1.19",
"zod": "^4.1.13"
},
"overrides": {
"lodash-es": "^4.18.0",
"@xmldom/xmldom": "^0.9.10",
"@isaacs/brace-expansion": "^5.0.5",
"dompurify": "^3.4.10",
"@babel/core": "^7.29.7",
"fast-uri": "^3.1.2",
"fast-xml-builder": "^1.1.7",
"fast-xml-parser": "^5.7.0",
"flatted": "^3.4.2",
"mermaid": "^11.15.0",
"uuid": "^11.1.1",
"esbuild": "^0.28.1",
"js-yaml": "^4.2.0",
"ws": "^8.21.0",
"ajv": "^6.14.0",
"rollup": "^4.59.0",
"minimatch@3": {
".": "^3.1.3",
"brace-expansion": "^1.1.13"
},
"minimatch@5": {
".": "^5.1.8",
"brace-expansion": "^2.0.3"
},
"minimatch@9": {
".": "^9.0.7",
"brace-expansion": "^2.0.3"
},
"minimatch@10": {
".": "^10.2.3",
"brace-expansion": "^5.0.5"
},
"micromatch": {
"picomatch": "^2.3.2"
},
"tinyglobby": {
"picomatch": "^4.0.4"
},
"vite": {
".": "^6.4.2",
"picomatch": "^4.0.4",
"postcss": "^8.5.10",
"yaml": "^2.8.3"
},
"vitest": {
"picomatch": "^4.0.4"
},
"next": {
"postcss": "^8.5.10"
},
"styled-components": {
"postcss": "^8.5.10"
},
"nextra": {
"yaml": "^2.8.3"
},
"oas-linter": {
"yaml": "^1.10.3"
},
"oas-resolver": {
"yaml": "^1.10.3"
},
"oas-validator": {
"yaml": "^1.10.3"
},
"swagger2openapi": {
"yaml": "^1.10.3"
}
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@mdx-js/mdx": "^3.1.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/ui": "^4.1.9",
"eslint": "^9.39.1",
"eslint-config-next": "^16.2.6",
"eslint-plugin-unused-imports": "^4.3.0",
"jsdom": "^26.1.0",
"pagefind": "^1.4.0",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
}
}