-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "scripticus",
"version": "2.0.0",
"description": "Legends of Idleon Discord bot",
"main": "dist/index.js",
"scripts": {
"prestart": "yarn build",
"start": "pm2 start ./dist/ecosystem.config.js",
"poststart": "pm2 monit",
"restart": "pm2 restart ./dist/ecosystem.config.js",
"postrestart": "pm2 monit",
"stop": "pm2 stop ./dist/ecosystem.config.js",
"poststop": "yarn delete",
"delete": "pm2 delete ./dist/ecosystem.config.js",
"logs": "pm2 logs Scripticus",
"dev": "yarn clean && tsc --project tsconfig.json && node .",
"commandregister": "yarn build && node dist/src/registerGlobalCommands.js",
"updatepm2": "pm2 update",
"prebuild": "yarn clean",
"build": "tsc --project tsconfig.production.json",
"clean": "rimraf dist/"
},
"author": "Deerjump",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^0.5.0",
"@vitalets/google-translate-api": "^8.0.0",
"axios": "0.27.2",
"chalk": "^4.1.2",
"discord-api-types": "^0.36.3",
"discord.js": "^14.2.0",
"dotenv": "16.0.1",
"express": "^4.17.1",
"mongoose": "^6.5.2",
"pm2": "^5.1.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "18.7.3",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
}
}