scoresaber-reloadedv3/backend/package.json

20 lines
415 B
JSON
Raw Normal View History

2024-10-04 19:35:44 +00:00
{
"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"
}
}