TravBot-v3/package.json

59 lines
1.7 KiB
JSON
Raw Normal View History

2020-12-15 01:44:28 +00:00
{
"name": "travebot",
2021-05-06 13:30:51 +00:00
"version": "3.2.3",
"description": "TravBot Discord bot.",
2020-12-15 01:44:28 +00:00
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.prod.json && npm prune --production",
"start": "node .",
"once": "tsc && npm start",
2021-05-17 18:48:38 +00:00
"dev": "tsc-watch --onSuccess \"npm run dev-instance\"",
"dev-fast": "tsc-watch --onSuccess \"node . dev\"",
"dev-instance": "rimraf dist && tsc && node . dev",
"test": "jest",
"format": "prettier --write **/*",
"postinstall": "husky install"
},
2020-12-15 01:44:28 +00:00
"dependencies": {
2021-10-30 10:13:28 +00:00
"canvas": "^2.8.0",
"chalk": "^4.1.2",
"discord.js": "^13.3.0",
"figlet": "^1.5.2",
"glob": "^7.2.0",
"inquirer": "^8.2.0",
2020-12-15 01:44:28 +00:00
"moment": "^2.29.1",
"ms": "^2.1.3",
"node-wolfram-alpha": "^1.2.5",
2022-04-03 10:21:11 +00:00
"onion-lasers": "npm:onion-lasers-v13@^2.2.1",
2021-10-30 10:13:28 +00:00
"pet-pet-gif": "^1.0.9",
"relevant-urban": "^2.0.0",
"weather-js": "^2.0.0"
2020-12-15 01:44:28 +00:00
},
"devDependencies": {
2021-10-30 10:13:28 +00:00
"@types/figlet": "^1.5.4",
"@types/glob": "^7.2.0",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.0.2",
"@types/mathjs": "^9.4.1",
2020-12-15 01:44:28 +00:00
"@types/ms": "^0.7.31",
2021-10-30 10:13:28 +00:00
"@types/node": "^16.11.6",
"@types/ws": "^8.2.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
2021-10-30 10:13:28 +00:00
"ts-jest": "^27.0.7",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
2020-12-15 01:44:28 +00:00
},
"optionalDependencies": {
2021-10-30 10:13:28 +00:00
"fsevents": "^2.3.2"
},
"author": "Keanu Timmermans",
"license": "MIT",
2020-12-15 01:44:28 +00:00
"keywords": [
"discord.js",
"bot"
]
2020-12-15 01:44:28 +00:00
}