-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "stash-discord-bot",
"version": "0.0.0",
"private": true,
"description": "The Tarkov.dev's Escape from Tarkov Discord bot",
"main": "index.mjs",
"engines": {
"node": "22.*"
},
"repository": {
"type": "git",
"url": "https://github.com/the-hideout/stash.git"
},
"license": "GNU General Public License v3.0",
"homepage": "https://github.com/the-hideout/stash",
"scripts": {
"start": "node index.mjs",
"dev": "cross-env NODE_ENV=development nodemon --ignore cache/ -r dotenv/config index.mjs",
"dev-commands": "cross-env NODE_ENV=ci node deploy-commands-dev.mjs",
"deploy": "railway up --service stash"
},
"type": "module",
"dependencies": {
"@discordjs/rest": "^2.4.0",
"ascii-table": "^0.0.9",
"cheerio": "^1.0.0",
"cron": "^3.1.7",
"cross-env": "^7.0.3",
"discord-api-types": "^0.37.114",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"got": "^14.4.2",
"i18next": "^24.2.0",
"moment": "^2.30.1",
"nodemon": "^3.1.9",
"turndown": "^7.2.0"
},
"devDependencies": {
"@railway/cli": "^3.20.0"
}
}