-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "discord-bot-typescript",
"version": "1.0.0",
"description": "Bot Discord",
"main": "index.ts",
"author": "Cassiano",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn ./src/index.ts"
},
"dependencies": {
"colors": "^1.4.0",
"discord.js": "^13.6.0",
"dotenv": "^14.3.2",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"mongoose": "5.13.7"
},
"devDependencies": {
"@types/moment-duration-format": "^2.2.3",
"@types/node": "^17.0.12",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5"
}
}