-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1007 Bytes
/
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
{
"name": "rtainjapan-discordbot",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node ./dist/index.js",
"start:dev": "cross-env NODE_ENV=development node ./dist/index.js",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint --ext .js --ignore-path .gitignore ./src",
"lint:fix": "eslint --ext .js --ignore-path .gitignore ./src --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"config": "^3.3.6",
"cross-env": "^7.0.3",
"discord.js": "^12.5.1",
"discord.js-commando": "git+https://github.com/discordjs/commando.git"
},
"devDependencies": {
"@types/config": "0.0.39",
"@types/node": "^12.20.19",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1",
"typescript": "^4.3.5"
}
}