-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.22 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": "@djwoodz/fs22-discord-bot",
"version": "0.1.0",
"private": true,
"description": "",
"main": "./bin/server.js",
"bin": {
"fs22-discord-bot": "./bin/server.js"
},
"scripts": {
"start": "node ./bin/server.js",
"update": "node ./src/update.js",
"pm2:start": "pm2 start ./bin/server.js --name fs22-discord-bot --time",
"pm2:stop": "pm2 stop fs22-discord-bot",
"dev": "nodemon ./bin/server.js -e js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DJWoodZ/FS22-Discord-Bot.git"
},
"keywords": [
"Farming Simulator 22",
"FS22",
"Discord",
"Bot"
],
"author": "DJ WoodZ",
"license": "MIT",
"bugs": {
"url": "https://github.com/DJWoodZ/FS22-Discord-Bot/issues"
},
"homepage": "https://github.com/DJWoodZ/FS22-Discord-Bot#readme",
"dependencies": {
"deepmerge": "^4.3.1",
"discord.js": "^14.14.1",
"dotenv-flow": "^4.0.1",
"fetch-retry": "^5.0.6",
"lodash": "^4.17.21",
"signal-exit": "^4.1.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0"
}
}