Files
discordeno/template/bigbot/package.json
2022-08-30 16:40:02 +00:00

50 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": "^13.0.0-rc51",
"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"
},
"type": "module",
"prettier": {
"trailingComma": "all",
"useTabs": true,
"tabWidth": 2,
"singleQuote": true,
"semi": true,
"printWidth": 120
}
}