mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 17:30:07 +00:00
* Update bigbot template to v16, update readme, added .env.example for an example env * Update minimal template to dd v16, update readme * Update minimal template readme for consistency * Update beginner template to v16, update readme * Added config.json file, readme to nodejs template * Fix kwik db stuff in beginner template * deno fmt * Update template readme * Fix bigbot template raw event ignoring GUILD_CREATE instead of GUILD_LOADED_DD * deno fmt * fix deno fmt again * Use .env file instead of config.json in nodejs template * fix: kwik's version in beginner template * Apply suggestions from code review Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> * Update template/README.md Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "dd-big-bot",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "nodemon -e ts --exec 'npm run start'",
|
|
"start": "node --no-warnings dist/index.js",
|
|
"devbg": "npx prisma generate && tsc --watch",
|
|
"fmt": "prettier -w ./src",
|
|
"dg": "ts-node src/gateway/index.ts",
|
|
"dr": "ts-node src/rest/index.js",
|
|
"db": "ts-node src/bot/index.ts",
|
|
"tsc": "tsc",
|
|
"tscw": "tsc --watch",
|
|
"devr": "node dist/rest/index",
|
|
"devg": "node dist/gateway/index",
|
|
"devb": "node dist/bot/index"
|
|
},
|
|
"dependencies": {
|
|
"@influxdata/influxdb-client": "^1.29.0",
|
|
"@prisma/client": "^3.15.2",
|
|
"colorette": "^2.0.19",
|
|
"discordeno": "^16.0.1",
|
|
"express": "^4.18.1",
|
|
"fastify": "^4.5.3",
|
|
"nanoid": "^4.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"tslib": "^2.3.1",
|
|
"web-worker": "^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^17.0.23",
|
|
"@types/ws": "^8.5.3",
|
|
"nodemon": "^2.0.15",
|
|
"prettier": "2.6.2",
|
|
"prisma": "^4.2.1",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"useTabs": true,
|
|
"tabWidth": 2,
|
|
"singleQuote": true,
|
|
"semi": true,
|
|
"printWidth": 120
|
|
}
|
|
}
|