-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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
{
"name": "bot",
"version": "1.0.0",
"description": "A Discord bot to help you learn Japanese!",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build:watch": "tsc --watch --project tsconfig.json",
"lint": "eslint \"**/*.ts\" --quiet --fix",
"format": "prettier --write \"**/*.{ts,json,md}\" --ignore-path .gitignore"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/iarna__toml": "^2.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript-base": "^4.0.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.2",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"discord.js": "^14.9.0",
"minimist": "^1.2.8",
"string-argv": "^0.3.1"
},
"private": "true",
"engineStrict": true,
"engines": {
"node": ">= 18.0.0"
},
"volta": {
"node": "18.16.0"
}
}