-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "fluffboost",
"version": "1.0.0",
"description": "FluffBoost is a heartwarming Discord bot that delivers daily doses of motivation and inspiration wrapped in a furry-friendly package. Brighten your Discord server with adorable furry mascots and uplifting quotes. Let FluffBoost bring smiles and positivity to your community every day! ",
"main": "app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"build": "rm -rf dist/ && tsc -p . --outDir dist",
"lint": "eslint . --ext .js --fix",
"format": "prettier-eslint --write $PWD/'**/*.{js,json}'",
"db:push": "prisma db push",
"db:pull": "prisma db pull",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"test": "cross-env NODE_ENV=test mocha tests --exit"
},
"author": "MrDemonWolf, Inc",
"license": "MIT",
"dependencies": {
"@discordjs/core": "^1.0.1",
"@discordjs/rest": "^2.0.1",
"@prisma/client": "5.3.1",
"@types/node-cron": "^3.0.9",
"@upstash/qstash": "^2.1.4",
"consola": "^3.2.3",
"cors": "^2.8.5",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"morgan": "^1.10.0",
"nanoid": "^5.0.1",
"node-cron": "^3.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/morgan": "^1.9.6",
"@types/node": "^20.6.1",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"prettier-eslint-cli": "^6.0.1",
"prisma": "^5.3.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}