-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 916 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 916 Bytes
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
{
"name": "tdcloud-doc",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@11.7.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"dev:webpack": "next dev --webpack",
"build": "next build",
"ci": "next typegen && tsc --noEmit && pnpm test && next build && node scripts/finalize-export.mjs",
"test": "node --test scripts/verify-export.test.mjs scripts/finalize-export.test.mjs scripts/verify-deployment.test.mjs",
"verify:deployment": "node scripts/verify-deployment.mjs",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"next": "16.3.3",
"nextra": "4.6.1",
"nextra-theme-docs": "4.6.1",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@types/node": "^22.18.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.3",
"typescript": "5.9.3"
}
}