mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
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>
27 lines
598 B
JSON
27 lines
598 B
JSON
{
|
|
"name": "photonvision-website",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"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"
|
|
}
|
|
}
|