/[sudobot]/trunk/package.json
ViewVC logotype

Diff of /trunk/package.json

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 5 by rakin, Mon Jul 29 17:28:11 2024 UTC revision 421 by rakin, Mon Jul 29 17:30:09 2024 UTC
# Line 1  Line 1 
1  {  {
2    "name": "sudobot",      "name": "sudobot",
3    "version": "0.0.1",      "description": "A Discord bot for moderation purposes.",
4    "description": "A discord bot for moderation purposes.",      "version": "4.0.0-alpha1",
5    "main": "src/app.js",      "main": "build/index.js",
6    "scripts": {      "license": "GPL-3.0-or-later",
7      "start": "node src/bot.js",      "keywords": [
8      "watch": "nodemon src/bot.js"          "bot",
9    },          "discord-bot",
10    "repository": {          "moderation",
11      "type": "git",          "automoderation",
12      "url": "git+https://github.com/virtual-designer/sudobot.git"          "discord-moderation",
13    },          "discord-moderation-bot",
14    "keywords": [          "discord-automoderation",
15      "bot",          "discord-automoderation-bot"
16      "discord-js"      ],
17    ],      "homepage": "https://github.com/onesoft-sudo/sudobot",
18    "author": "Ar Rakin <[email protected]>",      "icon": "https://res.cloudinary.com/rakinar2/image/upload/v1659628446/SudoBot-new_cvwphw.png",
19    "license": "Apache-2.0",      "readme": "https://github.com/onesoft-sudo/sudobot#readme",
20    "bugs": {      "author": {
21      "url": "https://github.com/virtual-designer/sudobot/issues"          "name": "Ar Rakin",
22    },          "email": "[email protected]",
23    "homepage": "https://github.com/virtual-designer/sudobot#readme",          "url": "https://virtual-designer.github.io"
24    "dependencies": {      },
25      "axios": "^0.26.1",      "repository": {
26      "discord.js": "^13.6.0",          "type": "git",
27      "dotenv": "^16.0.0",          "url": "https://github.com/onesoft-sudo/sudobot"
28      "ms": "^2.1.3",      },
29      "sqlite3": "^5.0.2"      "bugs": {
30    },          "url": "https://github.com/onesoft-sudo/sudobot/issues",
31    "engines": {          "email": "[email protected]"
32      "npm": ">=7.0.0",      },
33      "node": ">=16.0.0"      "dependencies": {
34    }          "@discordjs/builders": "^0.13.0",
35            "@discordjs/rest": "^0.4.1",
36            "axios": "^0.27.2",
37            "bcrypt": "^5.0.1",
38            "bufferutil": "^4.0.6",
39            "cors": "^2.8.5",
40            "date-fns": "^2.29.1",
41            "discord-api-types": "^0.32.1",
42            "discord-modals": "^1.3.6",
43            "discord.js": "^13.7.0",
44            "dot-object": "^2.1.4",
45            "dotenv": "^16.0.1",
46            "express": "^4.18.1",
47            "express-rate-limit": "^6.6.0",
48            "express-router": "^0.0.1",
49            "express-validator": "^6.14.2",
50            "jsonwebtoken": "^8.5.1",
51            "mongoose": "^6.5.4",
52            "ms": "^2.1.3",
53            "pm2": "^5.2.0",
54            "reflect-metadata": "^0.1.13",
55            "ts-deepmerge": "^4.0.0",
56            "uuid": "^9.0.0",
57            "zod": "^3.17.2"
58        },
59        "devDependencies": {
60            "@commitlint/cli": "^17.0.3",
61            "@commitlint/config-conventional": "^17.0.3",
62            "@types/bcrypt": "^5.0.0",
63            "@types/cors": "^2.8.12",
64            "@types/dot-object": "^2.1.2",
65            "@types/express": "^4.17.13",
66            "@types/jsonwebtoken": "^8.5.9",
67            "@types/ms": "^0.7.31",
68            "@types/node": "^17.0.33",
69            "@types/uuid": "^8.3.4",
70            "@typescript-eslint/eslint-plugin": "^5.36.2",
71            "@typescript-eslint/parser": "^5.36.2",
72            "eslint": "^8.23.0",
73            "eslint-plugin-unused-imports": "^2.0.0",
74            "husky": "^8.0.1",
75            "nodemon": "^2.0.16",
76            "ts-node": "^10.9.1",
77            "typescript": "^4.6.4"
78        },
79        "scripts": {
80            "watch": "nodemon ./src/index.ts --ext ts",
81            "dev": "ts-node ./src/index.ts",
82            "flag:prod": "ts-node ./src/index.ts --prod",
83            "deploy": "node ./deploy-commands.js",
84            "start:node": "node ./build/index.js",
85            "flag:dev": "node ./build/index.js --dev",
86            "build": "tsc",
87            "clean": "bash -c 'rm -r build'",
88            "prepare": "sh -c \"husky install; sh ./init.sh\" || echo \"Error while trying to prepare project.\"",
89            "start": "pm2 start ./ecosystem.config.js --no-daemon",
90            "lint": "eslint . --ext .ts",
91            "lint:fix": "eslint . --ext .ts --fix"
92        }
93  }  }

Legend:
Removed from v.5  
changed lines
  Added in v.421

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26