generated from shuding/nextra-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.85 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.85 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
{
"name": "sei-docs",
"version": "1.0.0",
"description": "Sei docs",
"private": true,
"scripts": {
"dev": "node scripts/fetch-bytebellai.js && node scripts/fetch-ecosystem-data.js && next dev --turbopack",
"build": "node scripts/fetch-bytebellai.js && node scripts/fetch-ecosystem-data.js && NODE_OPTIONS= next build",
"postbuild": "concurrently \"pagefind --site .next/server/app --output-path public/_pagefind --verbose\" \"next-sitemap\" \"node scripts/scrape-docs-html.js\"",
"start": "next start",
"format:pages": "prettier --write 'app/**/*.{js,ts,tsx,mdx}'",
"generate-seid-docs": "./generate-seid-docs.sh",
"check-links": "node scripts/check-links.mjs",
"scrape-docs": "node scripts/scrape-docs-html.js",
"upload-to-trieve": "node scripts/upload-to-trieve.js",
"seo:audit": "node scripts/audit-content-seo.mjs",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"license": "MIT",
"engines": {
"node": "22.x"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^2.0.2",
"@next/third-parties": "^16.1.6",
"@radix-ui/themes": "^3.3.0",
"@sei-js/evm": "^2.0.5",
"@tabler/icons-react": "3.38.0",
"@tailwindcss/postcss": "^4.2.1",
"katex": "^0.16.33",
"next": "16.1.6",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "^19.2.4",
"react-confetti": "^6.4.0",
"react-dom": "^19.2.4",
"react-snowfall": "^2.4.0",
"sonner": "^2.0.7",
"viem": "^2.46.3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"baseline-browser-mapping": "^2.10.0",
"concurrently": "^9.2.1",
"cssnano": "^7.1.2",
"globby": "^16.1.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-node": "^30.2.0",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.2",
"next-sitemap": "^4.2.3",
"node-fetch": "^3.3.2",
"pagefind": "^1.4.0",
"pino-pretty": "^13.1.3",
"playwright": "^1.58.2",
"postcss": "^8.5.8",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"terser": "^5.46.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"wait-on": "^9.0.4"
},
"resolutions": {
"@typescript/vfs": "1.6.4",
"minimatch": "10.2.3",
"@istanbuljs/load-nyc-config/js-yaml": "3.14.2",
"cosmiconfig/js-yaml": "4.1.1",
"@babel/traverse": "7.29.0",
"axios": "1.13.4",
"ws": "8.19.0",
"nanoid": "3.3.11",
"estree-util-value-to-estree": "3.5.0",
"lodash-es": "4.17.23"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"browserslist": {
"production": [
"Chrome >= 120",
"Edge >= 120",
"Firefox >= 120",
"Safari >= 15",
"iOS >= 15"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}