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

Diff of /trunk/package.json

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

revision 25 by rakin, Mon Jul 29 17:28:16 2024 UTC revision 358 by rakin, Mon Jul 29 17:29:46 2024 UTC
# Line 1  Line 1 
1  {  {
2    "name": "sudobot",      "name": "sudobot",
3    "version": "1.2.0-beta",      "version": "3.0.0",
4    "description": "A discord bot for moderation purposes.",      "main": "build/index.js",
5    "main": "src/app.js",      "license": "GPL-3.0-or-later",
6    "scripts": {      "dependencies": {
7      "start": "node src/bot.js",          "@discordjs/builders": "^0.13.0",
8      "watch": "nodemon src/bot.js"          "@discordjs/rest": "^0.4.1",
9    },          "axios": "^0.27.2",
10    "repository": {          "bcrypt": "^5.0.1",
11      "type": "git",          "bufferutil": "^4.0.6",
12      "url": "git+https://github.com/virtual-designer/sudobot.git"          "date-fns": "^2.29.1",
13    },          "discord-api-types": "^0.32.1",
14    "keywords": [          "discord-modals": "^1.3.6",
15      "bot",          "discord.js": "^13.7.0",
16      "discord-js"          "dot-object": "^2.1.4",
17    ],          "dotenv": "^16.0.1",
18    "author": "Ar Rakin <[email protected]>",          "express": "^4.18.1",
19    "license": "Apache-2.0",          "express-rate-limit": "^6.6.0",
20    "bugs": {          "express-router": "^0.0.1",
21      "url": "https://github.com/virtual-designer/sudobot/issues"          "express-validator": "^6.14.2",
22    },          "jsonwebtoken": "^8.5.1",
23    "homepage": "https://github.com/virtual-designer/sudobot#readme",          "mongoose": "^6.5.4",
24    "dependencies": {          "ms": "^2.1.3",
25      "axios": "^0.26.1",          "pm2": "^5.2.0",
26      "discord.js": "^13.6.0",          "reflect-metadata": "^0.1.13",
27      "dotenv": "^16.0.0",          "sequelize": "^6.20.1",
28      "express": "^4.18.0",          "sqlite3": "^5.0.8",
29      "ms": "^2.1.3",          "zod": "^3.17.2"
30      "sqlite3": "^5.0.2",      },
31      "tar": "^4.4.18"      "devDependencies": {
32    },          "@commitlint/cli": "^17.0.3",
33    "engines": {          "@commitlint/config-conventional": "^17.0.3",
34      "npm": ">=7.0.0",          "@types/bcrypt": "^5.0.0",
35      "node": ">=16.0.0"          "@types/dot-object": "^2.1.2",
36    }          "@types/express": "^4.17.13",
37            "@types/jsonwebtoken": "^8.5.9",
38            "@types/ms": "^0.7.31",
39            "@types/node": "^17.0.33",
40            "@types/sequelize": "^4.28.13",
41            "@types/sqlite3": "^3.1.8",
42            "@typescript-eslint/eslint-plugin": "^5.36.2",
43            "@typescript-eslint/parser": "^5.36.2",
44            "eslint": "^8.23.0",
45            "eslint-plugin-unused-imports": "^2.0.0",
46            "husky": "^8.0.1",
47            "nodemon": "^2.0.16",
48            "ts-node": "^10.9.1",
49            "typescript": "^4.6.4"
50        },
51        "scripts": {
52            "watch": "nodemon ./src/index.ts --ext ts",
53            "dev": "ts-node ./src/index.ts",
54            "flag:prod": "ts-node ./src/index.ts --prod",
55            "deploy": "node ./deploy-commands.js",
56            "start:node": "node ./build/index.js",
57            "flag:dev": "node ./build/index.js --dev",
58            "build": "tsc",
59            "clean": "bash -c 'rm -r build'",
60            "prepare": "sh -c \"husky install; sh ./init.sh\" || echo \"Error while trying to prepare project.\"",
61            "start": "pm2 start ./ecosystem.config.js --no-daemon",
62            "lint": "eslint . --ext .ts",
63            "lint:fix": "eslint . --ext .ts --fix"
64        }
65  }  }

Legend:
Removed from v.25  
changed lines
  Added in v.358

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26