[global] update flow-typed, .env, and some dependencies.

This commit is contained in:
41666 2019-04-14 12:51:12 -05:00
parent 50b5e334a3
commit c3b510f0bb
No known key found for this signature in database
GPG key ID: BC51D07640DC10AF
18 changed files with 3471 additions and 396 deletions

View file

@ -3,15 +3,16 @@
"name": "@roleypoly/bot",
"version": "2.0.0",
"scripts": {
"build": "babel --delete-dir-on-start -d lib .",
"build": "babel --delete-dir-on-start -d lib './*.js*'",
"dev": "yarn build --watch"
},
"main": "./lib/Bot.js",
"dependencies": {
"eris": "^0.9.0",
"@roleypoly/rpc-client": "2.0.0"
"@roleypoly/rpc-client": "2.0.0",
"async-retry": "^1.2.3",
"dotenv": "^7.0.0",
"eris": "^0.9.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3"
}
}
}

View file

@ -4,13 +4,16 @@
"version": "2.0.0",
"scripts": {
"postinstall": "yarn build",
"build": "babel --delete-dir-on-start -d lib ."
"build": "babel --delete-dir-on-start -d lib .",
"dev": "yarn build --watch"
},
"types": ".",
"main": "./lib/index.js",
"dependencies": {
"superagent":"^5.0.2"
"async-retry": "^1.2.3",
"superagent": "^5.0.2"
},
"devDependencies": {
"@babel/cli": "^7.4.3"
}
}
}

View file

@ -11,6 +11,7 @@
"@discordjs/uws": "^11.149.1",
"@roleypoly/types": "^2.0.0",
"@roleypoly/ui": "^2.0.0",
"async-retry": "^1.2.3",
"bufferutil": "^4.0.1",
"chalk": "^2.4.2",
"dotenv": "^7.0.0",
@ -33,7 +34,7 @@
"nanoid": "^2.0.1",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.2.10",
"sequelize": "^5.3.5",
"superagent": "^5.0.2",
"zlib-sync": "^0.1.4"
},
@ -51,7 +52,7 @@
"babel-eslint": "^10.0.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"chokidar": "^2.1.5",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-flowtype": "^3.6.1",
"standard": "12.0.1"
}
}

View file

@ -17,7 +17,7 @@
"next-redux-wrapper": "^3.0.0-alpha.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.1",
"react-redux": "^7.0.2",
"react-typist": "^2.0.5",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
@ -39,9 +39,9 @@
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-flowtype": "^3.6.1",
"react-test-renderer": "^16.8.6",
"standard": "12.0.1"
}