-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 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
46
47
48
{
"name": "discord-rod",
"version": "2.0.1",
"description": "A D&D roll bot with aliasing tools for use with Discord PBP games.",
"private": true,
"main": "rod.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/shards.ts tokenType=Live",
"beta": "tsc && node dist/shards.js tokenType=Beta",
"dev": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/rod.ts",
"devbeta": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/rod.ts tokenType=Beta",
"cleanup": "rm -rf .cache dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UltimateBrent/discord-rod.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UltimateBrent/discord-rod/issues"
},
"homepage": "https://github.com/UltimateBrent/discord-rod#readme",
"devDependencies": {
"@types/async": "^3.2.7",
"@types/lodash": "^4.14.173",
"@types/mersenne-twister": "^1.1.2",
"@types/node": "^14.17.16",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^2.0.12",
"ts-node": "^8.10.2",
"typescript": "^4.7.2"
},
"dependencies": {
"async": "^3.2.1",
"csv-parse": "^4.16.3",
"discord.js": "^13.7.0",
"lodash": "^4.17.21",
"mersenne-twister": "^1.1.0",
"mongoose": "^5.11.19",
"superagent": "^6.1.0"
}
}