-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 851 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 851 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
{
"name": "biomapper-docs",
"type": "module",
"packageManager": "yarn@4.6.0",
"scripts": {
"dev": "next",
"build": "NODE_ENV=production next build && pagefind --site .next/server/app --output-path out/_pagefind",
"start": "next start",
"prettier:check": "prettier --list-different .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.6",
"next": "^15.1.6",
"nextra": "^4.3.0",
"nextra-theme-docs": "^4.3.0",
"postcss": "^8.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"tailwindcss": "^4.0.6"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"pagefind": "^1.3.0",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "^5.7.3"
}
}