mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 01:10:07 +00:00
41 lines
960 B
JSON
41 lines
960 B
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"
|
|
},
|
|
"dependencies": {
|
|
"@influxdata/influxdb-client": "^1.29.0",
|
|
"@prisma/client": "^3.15.2",
|
|
"colorette": "^2.0.19",
|
|
"discordeno": "^13.0.0-rc51",
|
|
"express": "^4.18.1",
|
|
"fastify": "^4.5.3",
|
|
"nanoid": "^4.0.0",
|
|
"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"
|
|
},
|
|
"type": "module",
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"useTabs": true,
|
|
"tabWidth": 2,
|
|
"singleQuote": true,
|
|
"semi": true,
|
|
"printWidth": 120
|
|
}
|
|
}
|