-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1010 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1010 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
33
34
35
36
{
"name": "docs-template",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "npx -y serve@latest out",
"postbuild": "pagefind --site .next/server/app --output-path out/_pagefind"
},
"dependencies": {
"@tailwindcss/postcss": "^4.2.2",
"next": "^16.2.2",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"autoprefixer": "^10.4.27",
"eslint": "^10.2.0",
"eslint-config-next": "^16.2.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"pagefind": "^1.4.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
}
}