Remove Babel from package.json

Per @Coolguy3289 's request, removed the babel dependencies from the package.json
This commit is contained in:
ProfessorDey 2019-10-09 23:21:47 +01:00 committed by GitHub
parent ae997bd00b
commit 6c864e4661
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,6 @@
{
"dependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"app-root-path": "^2.2.1",
"babel-preset-node8": "^1.2.0",
"bitcoin": "^3.0.1",
"braces": "^2.3.1",
"chrono-node": "^1.3.11",
@ -25,8 +22,6 @@
},
"scripts": {
"prettier": "prettier --write \"{bot,.}/**/*.{js,json}\" --single-quote --print-width 240",
"build": "babel bot -d dist",
"prod": "babel bot -d dist & node dist/bot.js",
"lint": "prettier --write \"{bot,.}/**/*.{js,json}\" --single-quote --print-width 240",
"test": "prettier --write \"{bot,.}/**/*.{js,json}\" --single-quote --print-width 240 --list-different && npm audit && npm i"
},