scoresaber-reloadedv3/backend/package.json
Liam 98c52e5525
Some checks failed
Deploy Backend / deploy (push) Failing after 25s
Deploy Frontend / deploy (push) Failing after 10s
let's try this again
2024-10-04 20:35:44 +01:00

20 lines
415 B
JSON

{
"name": "backend",
"version": "1.0.0",
"author": "fascinated7",
"license": "MIT",
"private": true,
"main": "src/index.ts",
"scripts": {
"dev": "concurrently -k \"tsup --watch\" \"nodemon dist/index.js\"",
"build": "tsup",
"start": "node dist/index.js"
},
"devDependencies": {
"concurrently": "^9.0.1",
"nodemon": "^2.0.20",
"tsup": "^8.3.0",
"typescript": "^5"
}
}