forked from deriv-com/deriv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from niloo-fs/migrate-mobx-to-v6
upgrade MobX versions
- Loading branch information
Showing
8 changed files
with
224 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,86 @@ | ||
{ | ||
"version": "1.0.0", | ||
"name": "@deriv/bot-web-ui", | ||
"description": "Visual automation for Deriv.com", | ||
"main": "dist/bot/js/bot-web-ui.main.js", | ||
"private": true, | ||
"jest": { | ||
"setupFilesAfterEnv": [ | ||
"<rootDir>/.jest" | ||
], | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/", | ||
"tools.js", | ||
"Misc.js" | ||
] | ||
}, | ||
"engines": { | ||
"node": "^14.17.1" | ||
}, | ||
"scripts": { | ||
"start": "npm run test && npm run serve", | ||
"serve": "echo \"Serving...\" && webpack --progress --watch", | ||
"build": "f () { npm run build:skeleton && webpack --progress --env base=$1 ;}; f", | ||
"build:skeleton": "lerna exec --scope @deriv/bot-skeleton -- npm run build", | ||
"build:travis": "echo \"No build:travis specified\"", | ||
"test": "npm run test:mocha", | ||
"test:eslint": "eslint \"./src/**/*.?(js|jsx)\"", | ||
"test:mocha": "echo \"No test:mocha specified\"", | ||
"deploy": "echo \"No deploy specified\"", | ||
"deploy:clean": "echo \"No deploy:clean specified\"", | ||
"deploy:folder": "echo \"No deploy:folder specified\"", | ||
"deploy:staging": "echo \"No deploy:staging specified\"", | ||
"deploy:production": "echo \"No deploy:production specified\"" | ||
}, | ||
"author": "Binary.com", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"babel-eslint": "^10.1.0", | ||
"babel-loader": "^8.1.0", | ||
"chai": "^4.2.0", | ||
"clean-webpack-plugin": "^3.0.0", | ||
"concurrently": "^5.3.0", | ||
"copy-webpack-plugin": "^9.0.1", | ||
"css-hot-loader": "^1.4.4", | ||
"css-loader": "^5.0.1", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"eslint-config-binary": "^1.0.2", | ||
"eslint-config-prettier": "^7.2.0", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-prettier": "^3.3.1", | ||
"eslint-plugin-react": "^7.22.0", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"lint-staged": "^10.4.0", | ||
"loader-utils": "^1.1.0", | ||
"mini-css-extract-plugin": "^1.3.4", | ||
"node-sass": "^4.12.0", | ||
"raw-loader": "^4.0.0", | ||
"sass-loader": "^10.1.1", | ||
"sass-resources-loader": "^2.1.1", | ||
"stylelint-webpack-plugin": "^2.1.1", | ||
"svg-sprite-loader": "^5.2.1", | ||
"webpack": "^5.46.0", | ||
"webpack-cli": "^4.7.2" | ||
}, | ||
"dependencies": { | ||
"@deriv/bot-skeleton": "^1.0.0", | ||
"@deriv/components": "^1.0.0", | ||
"@deriv/deriv-charts": "^0.5.1", | ||
"@deriv/shared": "^1.0.0", | ||
"@deriv/translations": "^1.0.0", | ||
"classnames": "^2.2.6", | ||
"crc-32": "^1.2.0", | ||
"formik": "^2.1.4", | ||
"gh-pages": "^2.1.1", | ||
"immutable": "^3.8.2", | ||
"lz-string": "^1.4.4", | ||
"mobx": "^5.15.7", | ||
"mobx-react": "6.3.1", | ||
"pako": "^1.0.11", | ||
"prop-types": "^15.7.2", | ||
"react": "^16.14.0", | ||
"react-content-loader": "^4.3.2", | ||
"react-dom": "^16.14.0", | ||
"react-transition-group": "^4.3.0" | ||
} | ||
"version": "1.0.0", | ||
"name": "@deriv/bot-web-ui", | ||
"description": "Visual automation for Deriv.com", | ||
"main": "dist/bot/js/bot-web-ui.main.js", | ||
"private": true, | ||
"jest": { | ||
"setupFilesAfterEnv": [ | ||
"<rootDir>/.jest" | ||
], | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/", | ||
"tools.js", | ||
"Misc.js" | ||
] | ||
}, | ||
"engines": { | ||
"node": "^14.17.1" | ||
}, | ||
"scripts": { | ||
"start": "npm run test && npm run serve", | ||
"serve": "echo \"Serving...\" && webpack --progress --watch", | ||
"build": "f () { npm run build:skeleton && webpack --progress --env base=$1 ;}; f", | ||
"build:skeleton": "lerna exec --scope @deriv/bot-skeleton -- npm run build", | ||
"build:travis": "echo \"No build:travis specified\"", | ||
"test": "npm run test:mocha", | ||
"test:eslint": "eslint \"./src/**/*.?(js|jsx)\"", | ||
"test:mocha": "echo \"No test:mocha specified\"", | ||
"deploy": "echo \"No deploy specified\"", | ||
"deploy:clean": "echo \"No deploy:clean specified\"", | ||
"deploy:folder": "echo \"No deploy:folder specified\"", | ||
"deploy:staging": "echo \"No deploy:staging specified\"", | ||
"deploy:production": "echo \"No deploy:production specified\"" | ||
}, | ||
"author": "Binary.com", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"babel-eslint": "^10.1.0", | ||
"babel-loader": "^8.1.0", | ||
"chai": "^4.2.0", | ||
"clean-webpack-plugin": "^3.0.0", | ||
"concurrently": "^5.3.0", | ||
"copy-webpack-plugin": "^9.0.1", | ||
"css-hot-loader": "^1.4.4", | ||
"css-loader": "^5.0.1", | ||
"eslint-config-airbnb-base": "^14.2.1", | ||
"eslint-config-binary": "^1.0.2", | ||
"eslint-config-prettier": "^7.2.0", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-prettier": "^3.3.1", | ||
"eslint-plugin-react": "^7.22.0", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"lint-staged": "^10.4.0", | ||
"loader-utils": "^1.1.0", | ||
"mini-css-extract-plugin": "^1.3.4", | ||
"node-sass": "^4.12.0", | ||
"raw-loader": "^4.0.0", | ||
"sass-loader": "^10.1.1", | ||
"sass-resources-loader": "^2.1.1", | ||
"stylelint-webpack-plugin": "^2.1.1", | ||
"svg-sprite-loader": "^5.2.1", | ||
"webpack": "^5.46.0", | ||
"webpack-cli": "^4.7.2" | ||
}, | ||
"dependencies": { | ||
"@deriv/bot-skeleton": "^1.0.0", | ||
"@deriv/components": "^1.0.0", | ||
"@deriv/deriv-charts": "^0.5.1", | ||
"@deriv/shared": "^1.0.0", | ||
"@deriv/translations": "^1.0.0", | ||
"classnames": "^2.2.6", | ||
"crc-32": "^1.2.0", | ||
"formik": "^2.1.4", | ||
"gh-pages": "^2.1.1", | ||
"immutable": "^3.8.2", | ||
"lz-string": "^1.4.4", | ||
"mobx": "6.5.0", | ||
"mobx-react": "7.3.0", | ||
"pako": "^1.0.11", | ||
"prop-types": "^15.7.2", | ||
"react": "^16.14.0", | ||
"react-content-loader": "^4.3.2", | ||
"react-dom": "^16.14.0", | ||
"react-transition-group": "^4.3.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.