24 lines
549 B
JSON
24 lines
549 B
JSON
{
|
|
"name": "server-logger",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"clean": "rm -rf node_modules/ dist/",
|
|
"build": "tsc",
|
|
"start": "node ./dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"body-parser": "^1.20.2",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.19.2",
|
|
"winston": "^3.13.1",
|
|
"winston-daily-rotate-file": "^5.0.0",
|
|
"winston-discord-transport": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^22.1.0",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|