-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.27 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": "factionbot",
"version": "0.0.1",
"description": "Faction bot for discord",
"main": "bin\\main\\index.js",
"scripts": {
"start:dev": "tsc --watch & nodemon bin/main/index.js",
"start:forever": "forever bin/main/index.js",
"prebuild": "node scripts/pre-build.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Satsaa/FactionBot.git"
},
"keywords": [
"bot",
"discord",
"factions",
"questions"
],
"author": "Satsaa",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Satsaa/FactionBot/issues"
},
"homepage": "https://github.com/Satsaa/FactionBot#readme",
"devDependencies": {
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^15.0.1",
"nodemon": "2.0.6",
"prettier": "2.1.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"dependencies": {
"discord.js": "^11.5.1",
"strict-event-emitter-types": "^2.0.0"
}
}