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

Diff of /trunk/package.json

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

revision 4 by rakin, Mon Jul 29 17:28:11 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": "0.0.1",      "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/app.js"          "@discordjs/builders": "^0.13.0",
8    },          "@discordjs/rest": "^0.4.1",
9    "repository": {          "axios": "^0.27.2",
10      "type": "git",          "bcrypt": "^5.0.1",
11      "url": "git+https://github.com/virtual-designer/sudobot.git"          "bufferutil": "^4.0.6",
12    },          "date-fns": "^2.29.1",
13    "keywords": [          "discord-api-types": "^0.32.1",
14      "bot",          "discord-modals": "^1.3.6",
15      "discord-js"          "discord.js": "^13.7.0",
16    ],          "dot-object": "^2.1.4",
17    "author": "Ar Rakin <[email protected]>",          "dotenv": "^16.0.1",
18    "license": "Apache-2.0",          "express": "^4.18.1",
19    "bugs": {          "express-rate-limit": "^6.6.0",
20      "url": "https://github.com/virtual-designer/sudobot/issues"          "express-router": "^0.0.1",
21    },          "express-validator": "^6.14.2",
22    "homepage": "https://github.com/virtual-designer/sudobot#readme",          "jsonwebtoken": "^8.5.1",
23    "dependencies": {          "mongoose": "^6.5.4",
24      "discord.js": "^13.6.0",          "ms": "^2.1.3",
25      "sqlite3": "^5.0.2"          "pm2": "^5.2.0",
26    },          "reflect-metadata": "^0.1.13",
27    "engines": {          "sequelize": "^6.20.1",
28      "npm": ">=7.0.0",          "sqlite3": "^5.0.8",
29      "node": ">=16.0.0"          "zod": "^3.17.2"
30    },      },
31    "devDependencies": {      "devDependencies": {
32      "dotenv": "^16.0.0"          "@commitlint/cli": "^17.0.3",
33    }          "@commitlint/config-conventional": "^17.0.3",
34            "@types/bcrypt": "^5.0.0",
35            "@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.4  
changed lines
  Added in v.358

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26