-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "omniscience",
"version": "1.0.0",
"description": "Discord bot for fetching useful info",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve": "node src/index.js",
"serve-debug": "nodemon --inspect dist/index.js",
"start": "npm run serve",
"test": "jest --forceExit --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FOSSforlife/discord-bot-2021.git"
},
"author": "Elias Jackson",
"license": "ISC",
"bugs": {
"url": "https://github.com/FOSSforlife/discord-bot-2021/issues"
},
"homepage": "https://github.com/FOSSforlife/discord-bot-2021#readme",
"dependencies": {
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"googleapis": "^67.0.0",
"snoowrap": "^1.22.0",
"wikijs": "^6.0.1"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}