-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.77 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.77 KB
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
53
{
"name": "oaki",
"version": "2.1.3",
"description": "oakiBot",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev:win": "SET STEAMID_ENV=development&&node index.js",
"start:local:win": "SET STEAMID_ENV=local&&nodemon index.js",
"start:prod": "STEAMID_ENV=production node index.js",
"start:dev": "STEAMID_ENV=development nodemon index.js",
"start:local": "STEAMID_ENV=local nodemon index.js",
"db:migrate": "node ./src/Database/Migrate.js",
"db:seed:games": "node ./src/Database/SeedGames.js",
"db:setup": "npm run db:migrate && npm run db:seed:games",
"pm2:start": "pm2 start ecosystem.config.cjs --env production",
"pm2:restart": "pm2 restart steamid-guid-bot",
"pm2:stop": "pm2 stop steamid-guid-bot && pm2 delete steamid-guid-bot",
"pm2:logs": "pm2 logs steamid-guid-bot --lines 100",
"pm2:list": "pm2 ls",
"pm2:save": "pm2 save"
},
"keywords": [
"-"
],
"author": "oaki",
"license": "ISC",
"type": "module",
"dependencies": {
"@top-gg/sdk": "^3.1.6",
"axios": "^1.13.2",
"body-parser": "^2.2.0",
"discord.js": "^14.24.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-winston": "^4.2.0",
"gamedig": "^5.3.2",
"mongoose": "^8.19.3",
"morgan": "^1.10.1",
"nodemon": "^3.1.10",
"os": "^0.1.2",
"os-utils": "0.0.14",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"ping": "^1.0.0",
"postgres": "^3.4.7",
"sequelize": "^6.37.7",
"steamapi": "^3.1.3",
"swagger-ui-express": "^5.0.1",
"topgg-autoposter": "^2.0.2",
"winston": "^3.18.3"
}
}