-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
67 lines (67 loc) · 1.59 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
{
"name": "fr.bast.draftbot",
"version": "4.5.4",
"main": "src/index.js",
"engines": {
"node": ">=16.17.1"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/BastLast/DraftBot-A-Discord-Adventure.git"
},
"scripts": {
"start": "tsc && node dist/src/index.js",
"postinstall": "link-module-alias",
"test": "tsc && jest dist/test",
"eslint": "eslint src test",
"eslintFix": "eslint src test --fix",
"tsc": "tsc",
"yarnInstall": "yarn install",
"dockerStart": "node dist/src/index.js"
},
"_moduleAliases": {
"draftbot": ".",
"config": "./config",
"resources": "./resources"
},
"jest": {
"verbose": true
},
"dependencies": {
"@discordjs/rest": "2.2.0",
"@top-gg/sdk": "3.1.6",
"discord-api-types": "0.37.67",
"discord.js": "14.14.1",
"express": "4.18.2",
"link-module-alias": "1.2.0",
"mariadb": "3.0.2",
"moment": "2.29.4",
"node-ipc": "10.1.0",
"random-js": "2.1.0",
"sequelize": "6.33.0",
"source-map-support": "0.5.21",
"toml": "3.0.0",
"topgg-autoposter": "2.0.1",
"umzug": "3.3.1"
},
"devDependencies": {
"@types/bluebird": "3.5.41",
"@types/express": "4.17.20",
"@types/jest": "29.5.6",
"@types/node": "20.8.7",
"@types/node-fetch": "2.6.7",
"@types/node-ipc": "9.2.2",
"@types/validator": "13.11.5",
"@types/ws": "8.5.8",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"eslint": "8.52.0",
"eslint-config-google": "0.14.0",
"jest": "29.7.0",
"jshint": "2.13.6",
"ts-jest": "29.1.1",
"typescript": "5.2.2",
"typescript-eslint": "0.0.1-alpha.0"
}
}