-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "halo-discord-bot",
"version": "2.5.5",
"author": "Elijah Olmos",
"license": "AGPL-3.0-only",
"main": "index.js",
"type": "module",
"private": true,
"scripts": {
"dev": "nodemon --ignore logs/ --ignore cache/ --ignore api/",
"dev:api": "nodemon -w api/ api/index.js",
"start": "node --experimental-specifier-resolution=node .",
"deploy": "pm2 start index.js --name halo-discord --node-args='--experimental-specifier-resolution=node'"
},
"engines": {
"node": ">=16.9.0",
"pnpm": ">=7.0.0"
},
"nodemonConfig": {
"ignore": [
"logs/",
"cache/"
],
"execMap": {
"js": "node --experimental-specifier-resolution=node"
}
},
"dependencies": {
"bidirectional-map": "1.1.1",
"chalk": "5.3.0",
"discord.js": "13.14.0",
"dotenv": "16.3.1",
"firebase-admin": "11.11.1",
"graphql-request": "5.1.0",
"html-entities": "2.4.0",
"klaw": "4.1.0",
"lodash-es": "4.17.21",
"moment": "2.29.4",
"node-schedule": "2.1.1",
"serialize-error": "11.0.2",
"set-interval-async": "3.0.3",
"superagent": "8.1.2"
},
"devDependencies": {
"express": "4.18.2"
}
}