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

Diff of /trunk/package.json

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

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

Legend:
Removed from v.240  
changed lines
  Added in v.566

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26