forked from Vagabottos/rootbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
{
"name": "rootbot",
"version": "1.0.0",
"description": "A bot for the Woodland Warriors Discord.",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"start:dev": "nodemon --exec \"ts-node \"-- \"src/index.ts\"",
"test:lint": "tslint --project .",
"test:unit": "ava-ts src/test/**.test.ts",
"test": "npm run test:lint && npm run test:unit",
"watch:app": "live-server --open=dist --watch=dist",
"build:app:root": "node scripts/build-app --style=root",
"build:app:fort": "node scripts/build-app --style=fort",
"build:app:oath": "node scripts/build-app --style=oath",
"build:app:vast": "node scripts/build-app --style=vast"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seiyria/DiscordBotExample.git"
},
"author": "Kyle Kemp <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"bugs": {
"url": "https://github.com/seiyria/DiscordBotExample/issues"
},
"homepage": "https://github.com/seiyria/DiscordBotExample#readme",
"dependencies": {
"@seiyria/oath-parser": "^1.0.6",
"@types/node": "12.11.7",
"axios": "0.19.0",
"discord.js": "11.5.1",
"discord.js-reaction-menu": "1.0.1",
"dotenv": "8.0.0",
"fuzzyset.js": "0.0.8",
"imagemin": "^7.0.1",
"imagemin-webp": "^6.0.0",
"node-fetch": "^2.6.1",
"slugify": "1.3.6",
"ts-node": "8.3.0",
"typescript": "3.5.2",
"typescript-ioc": "^1.2.5",
"yamljs": "0.3.0"
},
"devDependencies": {
"ava": "^2.1.0",
"ava-ts": "^0.25.2",
"download-github-repo": "^0.1.4",
"fs-extra": "^8.1.0",
"live-server": "^1.2.1",
"nodemon": "^1.19.1",
"require-dir": "^1.2.0",
"rimraf": "^3.0.2",
"tslint": "^5.18.0"
}
}