-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "leetcoders-bot",
"version": "1.0.0",
"description": "Discord bot for CSCS Meetup Group",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint '*/**/*.{ts,js}'",
"prettier": "prettier --write '*/**/*.{ts,js,json}'",
"check-formatting": "prettier --check '*/**/*.{ts,js,json}'",
"register": "ts-node --esm src/commands/register.ts",
"dev": "nodemon && ngrok http 3000"
},
"author": "halja7 (Jack Hall)",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.363.0",
"discord-interactions": "^3.4.0",
"dotenv": "^16.0.3",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/express": "^4.17.17",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.5"
}
}