-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
43
44
{
"name": "bot",
"version": "1.0.1",
"description": "The GamePad Viewer Discord bot",
"main": "src/bot.js",
"repository": "https://github.com/GamepadViewer/bot.git",
"author": "Christopher Rodriguez <[email protected]>",
"license": "GPL v3",
"private": true,
"scripts": {
"build": "babel src -d lib --copy-files",
"dev": "nodemon --exec babel-node src/bot.js",
"types": "npx typesync",
"start": "node lib/bot.js"
},
"dependencies": {
"core-js": "^3.6.5",
"dedent": "^0.7.0",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"luxon": "^3.4.0",
"moment": "^2.27.0",
"regenerator-runtime": "^0.13.5",
"string-format": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@types/babel__core": "^7.1.9",
"@types/babel__preset-env": "^7.9.0",
"@types/core-js": "^2.5.8",
"@types/dedent": "^0.7.2",
"@types/luxon": "^3.3.5",
"@types/nodemon": "^1.19.0",
"@types/regenerator-runtime": "^0.13.5",
"@types/string-format": "^2.0.3",
"nodemon": "^2.0.4"
},
"engines": {
"node": "20.x"
}
}