forked from shuding/nextra-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "cardinal-docs",
"version": "0.0.1",
"description": "Nextra docs template",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "pagefind --site out",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:links": "jest lib/__tests__/links.test.ts"
},
"packageManager": "pnpm@10.30.1",
"license": "MIT",
"dependencies": {
"next": "^16.2.4",
"nextra": "^4.6.0",
"nextra-theme-docs": "^4.6.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/react": "19.2.14",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"js-yaml": "^4.1.1",
"pagefind": "^1.3.0",
"playwright": "^1.59.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.0"
},
"pnpm": {
"overrides": {
"@xmldom/xmldom": ">=0.9.10",
"dompurify": ">=3.4.0",
"lodash-es": ">=4.18.0",
"postcss": ">=8.5.10",
"uuid": ">=14.0.0"
}
}
}