-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "lichess-daily-puzzle-discord-bot",
"version": "1.0.0",
"description": "",
"main": "./prod/index.js",
"scripts": {
"build": "tsc",
"postinstall": "tsc",
"start": "node ./prod/index.js",
"watch-node": "nodemon ./prod/index.js",
"watch-ts": "tsc -w",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiTo0o/lichess-daily-puzzle-discord-bot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MiTo0o/lichess-daily-puzzle-discord-bot/issues"
},
"homepage": "https://github.com/MiTo0o/lichess-daily-puzzle-discord-bot#readme",
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"@sentry/node": "^6.19.3",
"axios": "^0.26.1",
"discord-api-types": "^0.30.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"mongoose": "^6.2.9"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
}
}