26 lines
621 B
JSON
26 lines
621 B
JSON
{
|
|
"name": "backend",
|
|
"version": "1.0.0",
|
|
"description": "The Sheepstar backend containing the api, cdn, shortener and more! :)",
|
|
"main": "app.ts",
|
|
"repository": "https://github.com/SheepstarStudio/Backend.git",
|
|
"author": "SheepstarStudio",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "node app.ts",
|
|
"dev": "nodemon app.ts"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.0.2",
|
|
"express": "^4.18.1",
|
|
"mongoose": "^6.5.4",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^18.7.15",
|
|
"nodemon": "^2.0.19"
|
|
}
|
|
}
|