forked from Crownicles/Crownicles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.53 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
{
"name": "fr.bast.draftbot",
"version": "2.2.3.a",
"main": "src/index.js",
"engines": {
"node": ">=14.17.2"
},
"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",
"pm2": "tsc && pm2 start pm2.config.js"
},
"_moduleAliases": {
"draftbot": ".",
"config": "./config",
"core": "./dist/src/core",
"commands": "./dist/src/commands",
"models": "./dist/src/core/models",
"resources": "./resources"
},
"jest": {
"verbose": true
},
"dependencies": {
"@types/archiver": "^5.1.1",
"@types/bluebird": "^3.5.35",
"@types/jest": "^26.0.23",
"@types/validator": "^13.1.3",
"@types/ws": "^7.4.4",
"archiver": "^5.3.0",
"archiver-zip-encryptable": "^1.0.10",
"chai": "^4.2.0",
"colors": "^1.4.0",
"dblapi.js": "^2.4.1",
"discord.js": "13.2.0",
"dropbox": "^10.9.0",
"figlet": "^1.3.0",
"link-module-alias": "^1.2.0",
"moment": "^2.24.0",
"random-js": "^2.1.0",
"sequelize": "^5.21.7",
"sqlite3": "^5.0.2",
"ts-jest": "^27.0.2",
"typescript": "^4.3.2",
"typescript-eslint": "^0.0.1-alpha.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-config-google": "^0.14.0",
"jest": "^27.0.4",
"jshint": "^2.12.0"
}
}