forked from turborepo/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.72 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
{
"name": "kcd-discord-bot",
"version": "0.0.0-semantically-released",
"description": "The bot for the Turborepo Discord community (https://kcd.im/discord)",
"main": "dist/index.js",
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"license": "MIT",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"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",
"files": [
"dist"
],
"scripts": {
"start": "node .",
"build": "node ./other/generate-build-info.js",
"lint": "echo lol",
"dev": "nodemon ./src/example.js",
"setup": "npm install && npm run validate -s",
"test": "echo lol",
"test:update": "npm test -- --updateSnapshot --coverage"
},
"dependencies": {
"discord.js": "12.3.1",
"dotenv": "^8.2.0",
"got": "^11.7.0",
"leven": "^3.1.0",
"match-sorter": "^5.0.0",
"md5-hash": "^1.0.1",
"open-graph-scraper": "^4.6.0",
"p-memoize": "^4.0.1",
"redent": "^3.0.0",
"rollbar": "^2.19.4",
"set-interval-async": "^1.0.33"
},
"devDependencies": {
"kcd-scripts": "^6.6.0",
"msw": "^0.21.3"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"babel/camelcase": "off",
"no-console": "off",
"consistent-return": "off",
"require-await": "off",
"max-statements": [
"error",
150
],
"complexity": [
"error",
20
]
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
]
}