Files
Siteforge/companion-app/package.json
T
2026-04-20 14:58:57 -04:00

29 lines
733 B
JSON

{
"name": "siteforge-companion-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm:dev:api\" \"npm:dev:web\"",
"dev:web": "vite",
"dev:api": "NODE_ENV=development PORT=4174 node server.mjs",
"build": "tsc -b && vite build",
"preview": "vite preview",
"start": "NODE_ENV=production node server.mjs"
},
"dependencies": {
"express": "^5.1.0",
"fast-xml-parser": "^5.3.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"concurrently": "^9.2.1",
"typescript": "~5.9.3",
"vite": "^8.0.0"
}
}