-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "bbsc-bot",
"version": "1.0.0",
"description": "A simple bot for BBSC Discord",
"engines": {
"npm": ">=8.3.1",
"node": ">=16.14.0",
"yarn": "please use npm",
"pnpm": "please use npm"
},
"scripts": {
"start": "concurrently \"npm:start:api\" \"npm:start:discord\"",
"start:discord": "ts-node src/discord/index.ts",
"start:api": "ts-node src/api/index.ts",
"dev": "concurrently nodemon",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [
"bot",
"BBSC",
"discord"
],
"author": "Dragoon1010",
"license": "ISC",
"_moduleAliases": {
"@discord": "src/discord",
"@mariadb": "src/mariadb",
"@api": "src/api"
},
"dependencies": {
"@discordjs/builders": "^0.13.0",
"@discordjs/rest": "^0.4.1",
"@discordjs/voice": "^0.9.0",
"@sequelize/core": "^7.0.0-alpha.10",
"@typeit/discord": "^4.0.9",
"@types/glob": "^7.2.0",
"@types/node": "^14.14.28",
"@types/redis": "^2.8.31",
"@types/socket.io": "^2.1.13",
"axios": "^0.21.2",
"chalk": "^4.1.1",
"discord-api-types": "^0.33.0",
"discord.js": "13.7.0",
"dotenv": "^8.2.0",
"fastify": "^3.29.0",
"glob": "^7.1.6",
"libsodium-wrappers": "^0.7.10",
"mariadb": "^2.5.6",
"module-alias": "^2.2.2",
"socket.io": "^4.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"eslint": "^7.20.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1"
},
"eslintConfig": {
"env": {
"browser": false,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"parser": "@typescript-eslint/parser"
}
}
}