-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1 KB
/
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
34
35
36
37
38
39
40
41
42
{
"name": "elsydeon",
"version": "4.0.0",
"description": "Shenanigans, the bot.",
"main": "dist/index.js",
"repository": "https://github.com/avalonstar/elsydeon.git",
"author": "Bryan Veloso <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev src",
"clean": "rimraf ./dist",
"build": "npm run clean && tsc"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/node": "^14.14.10",
"prettier": "2.2.1",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"axios": "^0.21.0",
"chalk": "^4.1.0",
"cron": "^1.7.1",
"date-fns": "^2.16.1",
"discord.js": "^12.5.1",
"enmap": "^5.8.2",
"graphql": "^15.4.0",
"graphql-request": "^3.3.0",
"number-to-words": "^1.2.4",
"rimraf": "^3.0.0",
"twitch-js": "^2.0.0-beta.33",
"winston": "^3.3.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}