-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.75 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
{
"name": "discord_bot_curator",
"version": "1.0.0",
"description": "A discord bot that curates the content you want from specified channels in a server.",
"main": "./dist/index.js",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'test/**/*.test.ts' --exec \"ts-node\" ./src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p .",
"clean": "rm -rf dist/",
"test": "mocha --full-trace -r ts-node/register --timeout 1000 'test/**/*.test.ts'",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayang4114/discord_bot_curator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ayang4114/discord_bot_curator/issues"
},
"homepage": "https://github.com/ayang4114/discord_bot_curator#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.12",
"@types/js-priority-queue": "0.0.5",
"@types/mocha": "^8.0.3",
"@types/mongodb": "^3.5.27",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.2",
"@types/tmp": "^0.2.0",
"@types/word-wrap": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0"
},
"dependencies": {
"chai": "^4.2.0",
"eslint": "^7.10.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"axios": "^0.20.0",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"html-to-image": "^0.1.1",
"js-priority-queue": "^0.1.5",
"keyword-extractor": "0.0.19",
"mongodb": "^3.6.2",
"mongoose": "^5.10.7",
"node": "^14.13.0",
"tmp": "^0.2.1",
"word-wrap": "^1.2.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}