Skip to content

Commit

Permalink
tdweb: update dependencies
Browse files Browse the repository at this point in the history
GitOrigin-RevId: fd26c28c878ac4b74f8beca25958ce54d4a428b0
  • Loading branch information
arseny30 committed Apr 24, 2019
1 parent 5cc40ab commit 7312a62
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 96 deletions.
80 changes: 46 additions & 34 deletions example/web/tdweb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
"version": "0.2.43",
"description": "Javascript interface for TDLib (telegram library)",
"main": "dist/tdweb.js",
"repository": {
"type": "git",
"url": "https://github.com/tdlib/td.git",
"directory": "example/web/tdweb"
},
"files": [
"dist"
],
"scripts": {
"precommit": "lint-staged",
"build": "webpack",
"build": "webpack --mode production",
"start": "webpack-dev-server --open"
},
"keywords": [
Expand All @@ -17,34 +21,38 @@
"author": "Arseny Smirnov",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.50.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"exports-loader": "^0.6.4",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.14.2",
"script-loader": "^0.7.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.3",
"worker-loader": "^1.1.1"
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"acorn": "^6.1.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-flowtype": "^2.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"typescript": "^3.4.5",
"webpack": "4.28.2",
"webpack-cli": "^3.3.1",
"worker-loader": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"gitDir": "../../../",
"linters": {
"webpack.config.json": [
"prettier --single-quote --write",
Expand All @@ -61,18 +69,17 @@
}
},
"dependencies": {
"babel-runtime": "^6.26.0",
"detect-browser": "^2.5.1",
"localforage": "^1.7.2",
"@babel/runtime": "^7.4.3",
"localforage": "^1.7.3",
"uuid": "^3.3.2"
},
"babel": {
"presets": [
"env"
"@babel/env"
],
"plugins": [
"syntax-dynamic-import",
"transform-runtime"
"@babel/syntax-dynamic-import",
"@babel/transform-runtime"
]
},
"eslintConfig": {
Expand All @@ -84,6 +91,11 @@
},
"globals": {
"WebAssembly": true
},
"settings": {
"react": {
"version": "999.999.999"
}
}
}
}
Loading

0 comments on commit 7312a62

Please sign in to comment.