-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 KB
/
package.json
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
{
"name": "nexus-bot",
"version": "4.2.1",
"description": "discord bot to map text channel to each voice channel",
"main": "build/main.js",
"author": "andretkachenko",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "0.5.0",
"@discordjs/rest": "0.4.1",
"discord-api-types": "0.22.0",
"discord.js": "^13.3.1",
"dotenv": "8.6.0",
"express": "^4.21.0",
"http": "^0.0.1-security",
"mongodb": "3.6.11",
"node": "16.6.1",
"nodemon": "2.0.20",
"typescript": "4.3.5",
"ws": "7.5.10"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/mongodb": "3.6.20",
"@types/node": "16.7.2",
"@types/ws": "7.4.7",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"eslint": "7.32.0",
"eslint-plugin-import": "2.24.0",
"eslint-plugin-jsdoc": "32.3.4",
"eslint-plugin-no-else": "0.2.2",
"eslint-plugin-prefer-arrow": "1.2.3"
},
"scripts": {
"debug": "node .",
"build-ts": "tsc",
"postinstall": "npm run build-ts",
"start": "npm run serve",
"serve": "node build/main.js",
"watch-node": "nodemon build/main.js",
"watch-ts": "tsc -w",
"lint": "eslint -c .eslintrc.json --ext .ts src"
},
"engines": {
"node": "v16.15.0",
"npm": "8.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andretkachenko/nexus-bot.git"
},
"bugs": {
"url": "https://github.com/andretkachenko/nexus-bot/issues"
},
"homepage": "https://github.com/andretkachenko/nexus-bot#readme"
}