-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "janet",
"version": "1.0.0",
"description": "A bot for the r/jb discord",
"main": "dist/index.js",
"repository": "https://github.com/Emy/janet",
"author": "Emy",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "tsc -b src",
"start": "node dist/index.js",
"lint": "eslint \"src/**\" --fix",
"dev": "yarn lint && yarn build && yarn start"
},
"dependencies": {
"discord.js": "discordjs/discord.js",
"dotenv": "^8.2.0",
"fold-to-ascii": "^5.0.0",
"ipswme": "^2.2.1",
"klasa": "^0.5.0",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"pg": "^8.0.0",
"shoukaku": "Deivu/Shoukaku"
},
"devDependencies": {
"@types/node": "^14.0.4",
"@types/node-fetch": "^2.5.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"klasa-decorators": "^0.0.1",
"prettier": "^2.0.2",
"typescript": "^4.0.3"
}
}