Partypack/Server/package.json

64 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2024-01-20 23:34:31 +01:00
{
"name": "basedserver",
"version": "1.0.0",
"description": "A base for my servers.",
"main": "bin/index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node bin/index.js",
"dev": "ts-node Source/index",
"dev:watch": "nodemon -x ts-node Source/index",
"check": "tsc --noEmit",
"lint": "prettier --check ./Source && eslint ./Source --ext .ts",
"format": "prettier --write ./Source && eslint ./Source --ext .ts --fix"
},
"nodemonConfig": {
"ext": "*.ts,*.json,*.env",
"ignore": [
"bin/**",
"thunder_tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/McMistrzYT/BasedServer.git"
},
"author": "McMistrzYT",
"license": "ISC",
"bugs": {
"url": "https://github.com/McMistrzYT/BasedServer/issues"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
2024-01-28 11:07:10 +01:00
"@types/cors": "^2.8.17",
2024-01-20 23:34:31 +01:00
"@types/express": "^4.17.18",
2024-01-28 11:07:10 +01:00
"@types/fluent-ffmpeg": "^2.1.24",
2024-01-22 00:41:59 +01:00
"@types/jsonwebtoken": "^9.0.5",
2024-02-05 00:24:53 +01:00
"@types/node": "^20.11.16",
"@types/underscore": "^1.11.15",
2024-01-26 23:29:46 +01:00
"@types/uuid": "^9.0.7",
2024-01-20 23:34:31 +01:00
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
2024-02-03 01:41:24 +01:00
"@types/node-cron": "^3.0.11",
2024-01-22 00:41:59 +01:00
"better-sqlite3": "^9.3.0",
2024-01-20 23:34:31 +01:00
"colorette": "^2.0.20",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"discord.js": "^14.14.1",
2024-01-20 23:34:31 +01:00
"dotenv": "^16.3.1",
2024-01-22 00:41:59 +01:00
"express": "^4.18.2",
2024-01-28 16:54:32 +01:00
"file-type": "^16.5.3",
2024-01-26 23:29:46 +01:00
"fluent-ffmpeg": "^2.1.2",
"image-size": "^1.1.1",
2024-01-24 01:35:47 +01:00
"joi": "^17.12.0",
2024-01-22 00:41:59 +01:00
"jsonwebtoken": "^9.0.2",
2024-02-03 01:41:24 +01:00
"node-cron": "^3.0.3",
"typeorm": "^0.3.19",
2024-01-24 01:35:47 +01:00
"underscore": "^1.13.6",
"uuid": "^9.0.1"
2024-01-20 23:34:31 +01:00
},
"homepage": "https://github.com/McMistrzYT/BasedServer#readme"
}