roles-bot/apps/redis-api/package.json

22 lines
470 B
JSON
Raw Normal View History

2023-04-09 11:09:58 +02:00
{
"name": "redis-api",
"version": "0.0.1",
"author": "xHyroM",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "node scripts/build.mjs",
2023-04-09 15:53:10 +02:00
"dev": "node scripts/build.mjs --dev && node dist/index.mjs",
"start": "node dist/index.mjs"
2023-04-09 11:09:58 +02:00
},
"devDependencies": {
"esbuild": "^0.15.11",
"typescript": "^4.8.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"ioredis": "^5.3.1"
}
}