ShiftSync/package.json

21 lines
468 B
JSON
Raw Normal View History

2025-05-20 16:28:48 +00:00
{
2025-06-05 04:02:22 +00:00
"name": "shiftsync-website",
2025-05-20 16:28:48 +00:00
"private": true,
"version": "0.0.0",
2025-06-05 04:02:22 +00:00
"main": "index.js",
2025-05-20 16:28:48 +00:00
"scripts": {
2025-06-05 04:43:00 +00:00
"api": "npm run dev --prefix api",
"web": "npm run local --prefix web",
2025-06-05 04:02:22 +00:00
"dev": "concurrently \"npm run api\" \"npm run web\"",
"test": "echo \"Error: no test specified\" && exit 1"
2025-05-20 16:28:48 +00:00
},
"dependencies": {
2025-06-05 04:02:22 +00:00
"cors": "^2.8.5",
"express": "^5.1.0"
2025-05-20 16:28:48 +00:00
},
"devDependencies": {
2025-06-05 04:02:22 +00:00
"concurrently": "^9.1.2",
"nodemon": "^3.1.10"
2025-05-20 16:28:48 +00:00
}
}