-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
44
45
{
"name": "iislander",
"version": "1.0.0",
"description": "The IIslander Discord bot for the IIslands of War Discord server",
"contributors": [
"Antti <[email protected]>",
"Commentator2.0 <[email protected]>",
"WilsontheWolf"
],
"private": true,
"license": "MIT",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node -r dotenv/config --es-module-specifier-resolution=node --trace-warnings .",
"lint": "yarn eslint src --fix --ext js",
"format": "yarn prettier --write .",
"update": "yarn upgrade-interactive --latest",
"prepare": "husky install",
"build": "docker build -t docker.antti.codes/iiow/iislander .",
"helper": "node src/helper"
},
"dependencies": {
"discord.js": "14.9.0",
"dotenv": "16.0.3",
"enmap": "5.9.5"
},
"devDependencies": {
"eslint": "8.37.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IIoW/IIslander.git"
},
"bugs": {
"url": "https://github.com/IIoW/IIslander/issues"
},
"homepage": "https://github.com/IIoW/IIslander#readme"
}