mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 17:30:07 +00:00
36 lines
810 B
JSON
36 lines
810 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": {
|
|
"@prisma/client": "^3.12.0",
|
|
"discordeno": "^13.0.0-rc46",
|
|
"express": "^4.18.1",
|
|
"prisma": "^3.12.0",
|
|
"tslib": "^2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^17.0.23",
|
|
"@types/ws": "^8.5.3",
|
|
"nodemon": "^2.0.15",
|
|
"prettier": "2.6.2",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"type": "module",
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"useTabs": true,
|
|
"tabWidth": 2,
|
|
"singleQuote": true,
|
|
"semi": true,
|
|
"printWidth": 120
|
|
}
|
|
}
|