This repository was archived by the owner on Aug 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.93 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.93 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
{
"name": "videre-bot",
"version": "0.1.0",
"homepage": "https://github.com/videre-project/videre-bot",
"description": "Discord bot for providing metagame statistics from the Videre Project for Magic: The Gathering TCG.",
"repository": "https://github.com/Qonfused/videre-bot",
"author": "Cory Bennett <hi@coryb.co>",
"license": "MIT",
"main": "src/config.js",
"private": true,
"devDependencies": {
"eslint": "^8.4.0",
"jest": "^27.4.3",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@videre/cli": "*",
"@videre/database": "*",
"@videre/magic": "*",
"@videre/querybuilder": "*",
"babel-plugin-module-resolver": "^4.1.0",
"canvas": "^2.8.0",
"chalk": "4.1.1",
"discord.js": "^13.3.1",
"dompurify": "^2.3.3",
"dotenv": "10.0.0",
"fetch-h2": "^3.0.1",
"jsdom": "^19.0.0",
"node-fetch": "^2.6.1",
"puppeteer": "^19.10.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"resolutions": {
"@videre/cli": "videre-project/videre-project#workspace=@videre/cli",
"@videre/database": "videre-project/videre-project#workspace=@videre/database",
"@videre/magic": "videre-project/videre-project#workspace=@videre/magic",
"@videre/querybuilder": "videre-project/videre-project#workspace=@videre/querybuilder"
},
"scripts": {
"start": "nodemon --exec babel-node src",
"serve": "babel-node src",
"test": "npm run lint && jest src --silent",
"test-watch": "jest --watchAll --verbose --testTimeout=10000",
"lint": "eslint src && prettier src --check",
"lint-fix": "eslint src --fix && prettier src --write src"
},
"jest": {
"testEnvironment": "node"
},
"packageManager": "yarn@3.5.0"
}