-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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": "jamhacks7-discord-bot",
"version": "1.0.0",
"description": "Discord Bot for JAMHacks 7",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon && ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jamhacks-Hackathon/DiscordBot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jamhacks-Hackathon/DiscordBot/issues"
},
"homepage": "https://github.com/Jamhacks-Hackathon/DiscordBot#readme",
"dependencies": {
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"fs": "^0.0.1-security",
"mongoose": "^6.11.3",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}