-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 877 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
{
"name": "wca-bot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"prod": "yarn run init && yarn run start",
"init": "node init.js",
"start": "node index.js",
"dev": "node --require dotenv/config init.js && nodemon --ignore data/ --exec node --require dotenv/config --inspect index.js",
"codestyle": "prettier -c **/*.js *.json"
},
"dependencies": {
"chalk": "^5.3.0",
"country-code-emoji": "^2.3.0",
"cron": "^2.4.4",
"dayjs": "^1.11.11",
"discord.js": "^14.15.2",
"graphql": "^16.8.1",
"graphql-request": "^5.2.0",
"node-fetch": "^3.3.2",
"ramda": "^0.28.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"dotenv": "^16.4.5",
"nodemon": "^3.1.0",
"prettier": "^3.2.5"
},
"packageManager": "[email protected]"
}