-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "discordBot",
"version": "1.0.0",
"description": "A discord bot that links to the NYT mini crossword puzzle every day",
"main": "NYTCrosswordPuzzleBot.ts",
"scripts": {
"test": "jest --forceExit --detectOpenHandles",
"start": "tsc --p tsconfig.json && node ./build/NYTCrosswordPuzzleBot",
"lint": "eslint . --ext .js,.ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "Andrew Seale",
"license": "ISC",
"dependencies": {
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.14.35",
"@types/node-cron": "^2.0.3",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"node-cron": "^3.0.0",
"prettier": "2.2.1",
"sinon": "^10.0.0",
"ts-jest": "^26.5.5"
}
}