forked from typeofweb-org/typeofweb-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "typeofweb-discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "tsc-watch --onSuccess \"node ./dist/src/index.js\"",
"eslint": "eslint --fix",
"tsc": "tsc --noEmit -p tsconfig.json",
"lint": "yarn tsc && yarn eslint",
"test": "cross-env NODE_ENV=test yarn lint && yarn test:unit",
"test:ci": "cross-env NODE_ENV=test yarn lint && yarn coverage",
"test:unit": "cross-env NODE_ENV=test yarn mocha --file test/before-each.spec.ts 'src/**/*.spec.ts'",
"coverage": "nyc yarn test:unit",
"mocha": "mocha",
"clean": "rm -rf dist",
"build": "yarn clean && tsc && rsync -av --exclude='*.ts' src/** dist/src/",
"prepare": "husky install"
},
"keywords": [],
"author": "Michał Miszczyszyn <[email protected]> (https://typeofweb.com/)",
"license": "ISC",
"dependencies": {
"@types/bluebird": "3.5.36",
"algoliasearch": "4.12.0",
"bluebird": "3.7.2",
"bufferutil": "4.0.3",
"discord.js": "12.5.3",
"dotenv": "10.0.0",
"isolated-vm": "4.2.0",
"mongodb": "4.0.0-beta.5",
"monitorss": "6.13.19",
"natural": "5.1.13",
"node-cache": "5.1.2",
"node-fetch": "2.6.1",
"openai": "2.0.2",
"polish-plurals": "1.1.0",
"request": "2.88.2",
"request-promise": "4.2.6",
"secure-json-parse": "2.4.0",
"typescript": "4.3.2",
"zlib-sync": "0.1.7"
},
"devDependencies": {
"@types/chai": "4.2.18",
"@types/chai-as-promised": "7.1.4",
"@types/dotenv": "8.2.0",
"@types/mocha": "8.2.2",
"@types/natural": "5.1.0",
"@types/nock": "11.1.0",
"@types/node": "14.14.41",
"@types/node-fetch": "2.5.10",
"@types/secure-json-parse": "1.0.2",
"@types/sinon": "10.0.2",
"@types/sinon-chai": "3.2.5",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.3",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-functional": "3.2.1",
"eslint-plugin-import": "2.23.4",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"mocha": "8.4.0",
"nock": "13.1.0",
"nyc": "15.1.0",
"prettier": "2.3.0",
"sinon": "11.1.1",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.19",
"ts-node": "10.0.0",
"tsc-watch": "4.4.0"
},
"lint-staged": {
"**/*.ts": [
"yarn prettier --write"
],
"**/*.{md,js,json}": [
"yarn prettier --write"
]
}
}