-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 937 Bytes
/
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
{
"name": "discord-steam-link-bot",
"version": "1.0.0",
"description": "Discord bot that converts steam links to deep links to the steam app",
"main": "index.js",
"type": "module",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"pm2:list": "pm2 list",
"prod:reload": "pm2 reload steam-link",
"prod:start": "pm2 start npm --name=steam-link -- run start",
"prod:stop": "pm2 stop steam-link",
"dotenv:login": "npx dotenv-vault login",
"dotenv:pull": "npx dotenv-vault pull",
"dotenv:push": "npx dotenv-vault push"
},
"author": "Michael Bruns",
"dependencies": {
"discord.js": "^14.2.0",
"dotenv": "^16.0.1",
"dotenv-vault": "^1.11.1",
"request": "^2.88.0"
},
"devDependencies": {
"eslint": "^8.22.0",
"nodemon": "^2.0.19",
"pm2": "^5.2.0",
"prettier": "2.7.1"
}
}