This repository has been archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
73 lines (73 loc) · 1.98 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
{
"name": "kcd-discord-bot",
"version": "1.0.0",
"description": "The bot for the KCD discord community (https://kcd.im/discord)",
"main": "index.js",
"keywords": [],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"license": "MIT",
"engines": {
"node": "16",
"npm": "7"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/kcd-discord-bot"
},
"bugs": {
"url": "https://github.com/kentcdodds/kcd-discord-bot/issues"
},
"homepage": "https://github.com/kentcdodds/kcd-discord-bot#readme",
"scripts": {
"start": "node .",
"prebuild": "node ./other/generate-build-info.js",
"build": "kcd-scripts build --no-ts-defs",
"lint": "kcd-scripts lint",
"dev": "ts-node ./src/example",
"setup": "npm install && npm run validate -s",
"typecheck": "kcd-scripts typecheck",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"test:debug": "node --inspect-brk ./node_modules/kcd-scripts/dist/scripts/test.js --runInBand",
"validate": "kcd-scripts validate"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"@sentry/node": "^6.8.0",
"@sentry/tracing": "^6.8.0",
"discord.js": "12.5.3",
"dotenv": "^10.0.0",
"got": "^11.8.2",
"leven": "^3.1.0",
"match-sorter": "^6.3.0",
"md5-hash": "^1.0.1",
"mem": "^8.1.1",
"open-graph-scraper": "^4.8.2",
"p-memoize": "^4.0.1",
"redent": "^3.0.0",
"set-interval-async": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/open-graph-scraper": "^4.8.0",
"@types/set-interval-async": "^1.0.0",
"kcd-scripts": "^10.0.0",
"msw": "^0.28.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"*.ignored.*",
"*.d.ts"
],
"babel": {
"sourceMaps": "inline",
"sourceRoot": "/",
"presets": [
"./node_modules/kcd-scripts/babel.js"
]
}
}