-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.23 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
46
47
48
49
50
{
"name": "dice-boy",
"version": "0.1.2",
"description": "A Fallout RPG dice rolling bot for Discord",
"main": "dist/index.js",
"devDependencies": {
"@types/events": "3.0.0",
"@types/node": "14.14.41",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"discord.js": "12.5.3",
"discord.js-commando": "github:discordjs/Commando",
"discord.js-menu": "2.3.1",
"dotenv": "8.2.0",
"eslint": "7.25.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"npm-run-all": "4.1.5",
"npm-watch": "0.9.0",
"prettier": "2.2.1",
"prettier-eslint": "12.0.0",
"rimraf": "3.0.2",
"rpg-dice-roller": "5.0.0",
"typescript": "4.2.4"
},
"scripts": {
"start": "run-s clean compile watch",
"build": "run-s clean compile",
"test": "jest",
"clean": "rimraf dist",
"compile": "tsc",
"client": "node dist/index.js",
"watch": "run-p watch:*",
"watch:client": "npm-watch client",
"watch:compile": "tsc --watch"
},
"watch": {
"client": {
"patterns": [
"dist"
],
"extensions": [
"js"
],
"quiet": false
}
},
"author": "Devin T. Currie",
"license": "ISC"
}