-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
{
"name": "dashbot",
"version": "0.8.1",
"main": "index.js",
"author": "Nicholas Sorokin <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"injectVersion": "node scripts/injectVersion.js",
"build": "yarn injectVersion --dev && tsc",
"build:prod": "yarn injectVersion --prod && tsc -p tsconfig.prod.json",
"watch": "yarn injectVersion --dev && tsc -w",
"run": "node dist/main.js",
"build:docker": "docker build -t oldstarchy/dashbot .",
"publish": "yarn build:docker && docker push oldstarchy/dashbot",
"lint": "eslint src/**/*.ts",
"test": "mocha \"test/**/*.ts\"",
"test:debug": "mocha --inspect-brk \"test/**/*.ts\"",
"test:watch": "mocha -w \"test/**/*.ts\"",
"coverage": "nyc mocha --config .mocharc.js \"test/**/*.ts\" && codecov"
},
"dependencies": {
"@types/node": "^14.14.16",
"deep-extend": "^0.6.0",
"discord.js": "^13.7.0",
"express": "^4.17.1",
"greenlock-express": "^4.0.3",
"haiku-random": "^1.0.0",
"luxon": "^1.25.0",
"mineflayer": "^4.3.0",
"mineflayer-pathfinder": "^2.1.1",
"node-fetch": "^2.6.1",
"tail": "^2.1.0",
"throttle-debounce": "^3.0.1",
"typed-emitter": "^1.3.1",
"typescript": "^4.1.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/chai-spies": "^1.0.3",
"@types/deep-extend": "^0.4.31",
"@types/express": "^4.17.9",
"@types/luxon": "^1.25.0",
"@types/mocha": "^8.2.0",
"@types/node-fetch": "^2.5.7",
"@types/tail": "^2.0.0",
"@types/throttle-debounce": "^2.1.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"codecov": "^3.8.3",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^8.2.1",
"nyc": "^15.0.0",
"prettier": "^2.6.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1"
}
}