forked from mananchawla2005/we-love-matt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "we-love-matt",
"version": "3.1.4",
"description": "A bot to show Hacktoberfest some love",
"main": "./prod/index.js",
"scripts": {
"prebuild": "rm -rf ./prod",
"build": "tsc",
"start": "node -r dotenv/config ./prod/index.js",
"lint": "eslint src --max-warnings 0",
"test": "ts-mocha -u tdd test/**/*.spec.ts --recursive --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhcarrigan/we-love-matt.git"
},
"author": "Naomi Carrigan",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nhcarrigan/we-love-matt/issues"
},
"homepage": "https://github.com/nhcarrigan/we-love-matt#readme",
"engines": {
"node": "^16.10.0",
"npm": "^8.0.0"
},
"dependencies": {
"@discordjs/rest": "^1.1.0",
"@sentry/integrations": "^7.0.0",
"@sentry/node": "^7.0.0",
"discord.js": "^14.0.0",
"dotenv": "^16.0.0",
"string-similarity": "^4.0.4",
"typescript": "^4.5.4",
"winston": "^3.4.0"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/mocha": "10.0.0",
"@types/node": "17.0.9",
"@types/string-similarity": "4.0.0",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"axios": "0.27.2",
"chai": "4.3.6",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-prettier": "4.2.1",
"mocha": "10.0.0",
"prettier": "2.7.1",
"ts-mocha": "10.0.0"
}
}