fp/services/bot/package.json

35 lines
1.0 KiB
JSON
Raw Normal View History

{
2024-07-30 20:34:25 +00:00
"name": "@futureporn/bot",
2024-07-10 02:34:23 +00:00
"type": "module",
2024-08-01 19:16:35 +00:00
"version": "1.0.4",
"description": "Futureporn Discord bot",
2024-07-30 20:34:25 +00:00
"main": "dist/index.js",
"scripts": {
2024-07-14 16:22:30 +00:00
"test": "echo \"Warn: no test specified\" && exit 0",
"start": "node ./dist/index.js",
"dev.nodemon": "nodemon --legacy-watch --ext js,ts --watch ./src --exec \"node --loader ts-node/esm --disable-warning=ExperimentalWarning ./src/index.ts\"",
2024-08-01 19:16:35 +00:00
"dev": "tsx --watch ./src/index.ts",
2024-07-16 10:46:44 +00:00
"build": "tsc --build",
"clean": "rm -rf dist",
"superclean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist"
},
2024-08-01 19:16:35 +00:00
"packageManager": "pnpm@9.6.0",
"keywords": [],
2024-08-01 19:16:35 +00:00
"author": "@CJ_Clippy",
2024-07-10 02:34:23 +00:00
"license": "Unlicense",
"dependencies": {
2024-08-02 23:00:49 +00:00
"date-fns": "^3.6.0",
2024-07-10 02:34:23 +00:00
"discord.js": "^14.15.3",
2024-07-30 20:34:25 +00:00
"dotenv": "^16.4.5",
2024-08-01 19:16:35 +00:00
"graphile-config": "0.0.1-beta.9",
"graphile-worker": "^0.16.6"
},
"devDependencies": {
"@futureporn/types": "workspace:^",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
2024-08-01 19:16:35 +00:00
"tsx": "^4.16.2",
"typescript": "^5.5.3"
}
}