-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 878 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 878 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
{
"name": "posit-open-source-website",
"version": "1.0.0",
"description": "Posit Open Source Website",
"scripts": {
"dev-hugo": "hugo server -D --disableFastRender",
"dev-tailwind": "npx @tailwindcss/cli -i assets/css/main.css -o assets/css/index.css --watch",
"build-tailwind": "npx @tailwindcss/cli -i assets/css/main.css -o assets/css/index.css --minify",
"build-search": "npx pagefind --site public",
"dev": "npm-run-all --parallel dev-hugo dev-tailwind"
},
"devDependencies": {
"@iconify-json/material-symbols-light": "^1.2.61",
"@iconify/json": "^2.2.448",
"@iconify/tailwind4": "^1.2.3",
"@tailwindcss/cli": "^4.0.17",
"@tailwindcss/typography": "^0.5.13",
"npm-run-all": "^4.1.5",
"pagefind": "^1.4.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.17"
}
}