-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "aenex",
"version": "0.1.1",
"description": "Aenex",
"keywords": [
"aenex",
"nexbot",
"discord bot"
],
"author": "@nexbot-dev",
"license": "Apache-2.0",
"main": "dist/app.js",
"private": true,
"type": "module",
"scripts": {
"start": "node dist/app.js",
"deploy-to-server": "node scripts/deploy-commands.dev.js",
"deploy-to-global": "node scripts/deploy-commands.prod.js",
"clean": "node scripts/clean-dist.js",
"build": "tsc",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@discordjs/rest": "^1.5.0",
"@nexbot/nex-framework": "^1.0.0",
"common-tags": "^1.8.2",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"pg": "^8.10.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.12"
},
"devDependencies": {
"@nexbot/eslint-config": "^1.0.1",
"@types/common-tags": "^1.8.1",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"typescript": "^5.1.6"
},
"imports": {
"#commands/*": [
"./dist/commands/*.js"
],
"#components/*": [
"./dist/components/*.js"
],
"#core/*": [
"./dist/core/*.js"
],
"#entities/*": [
"./dist/databases/entities/*.js"
],
"#migrations/*": [
"./dist/databases/migrations/*.js"
],
"#databases/*": [
"./dist/databases/*.js"
],
"#events/*": [
"./dist/events/*.js"
],
"#libs/*": [
"./dist/libs/*.js"
],
"#root/*": [
"./dist/*.js"
]
},
"packageManager": "yarn@3.5.1"
}