-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.24 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.24 KB
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
{
"name": "@realitymod/bot",
"version": "1.0.0",
"description": "RealityMod's Discord Bot which adds support for suggestions and other utilities in our Discord server",
"main": "dist/index.js",
"private": true,
"packageManager": "pnpm@10.22.0",
"scripts": {
"start": "node --env-file .env -r ts-node/register src/index.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"typeorm": "typeorm-ts-node-commonjs",
"migrations:generate": "pnpm typeorm migration:generate -d ./src/migrations/dataSource.ts",
"migrations:run": "pnpm typeorm migration:run -d ./src/migrations//dataSource.ts",
"migrations:revert": "pnpm typeorm migration:revert -d ./src/migrations/dataSource.ts"
},
"author": "Reality Mod Team",
"license": "MIT",
"dependencies": {
"axios": "1.13.2",
"dayjs": "^1.11.6",
"discord.js": "^14.8.0",
"node-schedule": "^2.1.1",
"pg": "^8.8.0",
"pino": "^10.1.0",
"reflect-metadata": "^0.2.2",
"typeorm": "0.3.27"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/node-schedule": "^2.1.0",
"pino-pretty": "^13.1.2",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"engines": {
"node": ">=22",
"pnpm": ">=10.10.0"
}
}