Files
PhotonVision/website/package.json
Sam Freund 3c017ab961 Check website format in CI (#2454)
Add a command to lint the website to package.json, and update the
workflow. Updates docs for linting as well.

---------

Co-authored-by: Jade Turner <spacey-sooty@proton.me>
2026-05-03 18:16:32 -07:00

30 lines
637 B
JSON

{
"name": "photonvision-website",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite-ssg build",
"preview": "vite preview",
"format": "prettier --write src/",
"format-ci": "prettier --check src/"
},
"devDependencies": {
"@toolwind/anchors": "^1.0.10",
"prettier": "^3.8.1",
"typescript": "~5.7.3",
"vite": "^8.0.3",
"vite-ssg": "^28.3.0"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"@vitejs/plugin-vue": "^6.0.5",
"tailwindcss": "^4.2.2",
"vue": "^3.5.31"
}
}