-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 937 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
{
"name": "lbatrivia-discord",
"version": "0.0.1",
"description": "Discord App Bot to interact with Little Big Adventure series quotes",
"repository": "https://github.com/xesf/lbatrivia-discord.git",
"author": "Alexandre Fontoura <[email protected]>",
"license": "MIT",
"private": false,
"module": "dist/lbatrivia-discord.js",
"main": "src/index.js",
"scripts": {
"build": "babel src -s -d dist/",
"build:prod": "webpack -p",
"start": "babel-node ./src/index.js --ignore ./node_modules",
"start:watch": "nodemon ./src/index.js --exec babel-node -- --ignore ./node_modules"
},
"dependencies": {
"diacritic": "^0.0.2",
"discord.js": "^11.5.1",
"lodash": "^4.17.21",
"opusscript": "^0.0.8"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"nodemon": "^2.0.12",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
}
}