-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.43 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
{
"name": "ipa",
"homepage": "https://github.com/10gen/ipa#readme",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": "22.x",
"npm": "10.x"
},
"scripts": {
"format:prettier": "npx prettier . --write",
"lint:prettier": "npx prettier . --check",
"lint:markdown": "npx markdownlint \"**/*.md\" \".github/**/*.md\" --ignore node_modules --ignore LICENSE.md",
"lint": "run-p lint:*",
"docusaurus:start": "docusaurus start",
"docusaurus:build": "docusaurus build",
"docusaurus:serve": "docusaurus serve",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@docusaurus/tsconfig": "^3.10.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.1.0",
"markdownlint": "^0.38.0",
"markdownlint-cli": "^0.45.0",
"npm-run-all": "^4.1.5",
"prettier": "3.6.1",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"dependencies": {
"@docusaurus/core": "^3.8.1",
"@docusaurus/plugin-content-docs": "^3.8.1",
"@docusaurus/preset-classic": "^3.8.1",
"@docusaurus/theme-classic": "^3.8.1",
"@docusaurus/theme-search-algolia": "^3.8.1",
"@easyops-cn/docusaurus-search-local": "^0.51.1",
"clsx": "^2.1.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.3.6"
}
}