node-event-bot/package.json
2022-04-23 21:26:08 +02:00

49 lines
1.3 KiB
JSON

{
"name": "discord-event-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf build",
"watch": "yarn run clean && yarn run build -- -w",
"monitor": "nodemon build/index.js",
"start": "node build/index.js",
"buildstart": "yarn run build && node build/index.js",
"lint": "eslint . --ext .ts --fix",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^0.3.0",
"@tsconfig/recommended": "^1.0.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"axios": "^0.26.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"discord-api-types": "^0.27.3",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"ts-node": "^10.7.0",
"typescript": "^4.4.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"jest-cli": "^27.3.1",
"nodemon": "^2.0.14",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7"
}
}