-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.53 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
{
"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:container": "npm run load:content && npm run start",
"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",
"load:content": "ts-node -O \"{\\\"module\\\": \\\"commonjs\\\"}\" scripts/load-content"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seiyria/DiscordBotExample.git"
},
"author": "Kyle Kemp <kyle@seiyria.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"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": "^14.15.3",
"discord.js-reaction-menu": "1.0.1",
"dotenv": "8.0.0",
"download-github-repo": "^0.1.4",
"fuzzyset.js": "0.0.8",
"node-fetch": "^2.6.1",
"slugify": "1.3.6",
"ts-node": "8.3.0",
"typescript": "^5.5.3",
"typescript-ioc": "^1.2.5"
},
"devDependencies": {
"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"
}
}