-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "valence-bot",
"version": "1.0.0",
"description": "Small bot for RuneScape",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/index.js",
"slash": "cross-env NODE_ENV=DEV node ./src/slashCommands.js",
"dev": "cross-env NODE_ENV=DEV node ./src/index.js"
},
"author": "Luke",
"license": "ISC",
"type": "module",
"engines": {
"node": "22.14.0"
},
"dependencies": {
"@discordjs/rest": "^1.7.1",
"assert": "^2.0.0",
"axios": "^1.12.0",
"camelcase": "^6.3.0",
"discord.js": "^14.19.3",
"dotenv": "^8.6.0",
"googleapis": "^64.0.0",
"mongodb": "6.3",
"node-cron": "^2.0.3",
"node-fetch": "^2.7.0",
"pretty-ms": "^7.0.1",
"uuid": "^11.1.0",
"winston": "^3.8.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"prettier": "2.7.1"
}
}