forked from binary-com/deriv-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 4.44 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "deriv-bot",
"description": "Visual automation for deriv.app",
"bin": {
"bot": "lib/index.js"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/.jest"
],
"testPathIgnorePatterns": [
"/node_modules/",
"tools.js"
]
},
"scripts": {
"build": "rimraf dist && cross-env NODE_ENV=production webpack --mode=production --optimize-minimize --progress",
"watch": "webpack --mode=development --progress --watch",
"start": "eslint ./src && rimraf dist && webpack-dev-server --mode=development --open 'Google Chrome' --hot --inline --port 80",
"test": "eslint ./src && jest -w 10 --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"gh-pages": "gh-pages --dist '.' --src '{index.html,manifest.json,dist/**,CNAME}'",
"gh-pages:folder": "gh-pages --dist '.' --src '{index.html,manifest.json,dist/**}' --dest",
"release": "d() { test -z $1 && echo 'Please specify branch.' && exit 1; (git show-branch $1) || exit 1; git stash; git checkout $1; npm i; rm -rf branch/$1; mkdir -p branch/$1 ; gulp build-min; cp -r www/ branch/$1; gulp release-branch --branch $1;}; d",
"release-production": "d() { git stash; git checkout master; npm i;gulp build-min;gulp release-master;}; d"
},
"author": "Binary.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@binary-com/binary-indicators": "^1.6.0",
"app-module-path": "^2.2.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"binary-live-api": "^29.0.0",
"binary-utils": "^4.23.0",
"blockly": "github:google/blockly#339a653",
"chai": "^4.1.2",
"copy-webpack-plugin": "^5.0.3",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^2.1.1",
"deep-diff": "^1.0.2",
"del": "^4.1.1",
"es6-plato": "^1.1.6",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-binary": "^1.0.2",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"file-saver": "^2.0.2",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-concat-css": "^3.1.0",
"gulp-concat-util": "^0.5.5",
"gulp-connect": "^5.0.0",
"gulp-mustache": "^4.1.1",
"gulp-open": "^3.0.1",
"gulp-remote-src": "^0.4.4",
"gulp-rename": "^1.2.2",
"gulp-rev": "^9.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-watch": "^5.0.1",
"i18next-scanner": "^1.9.4",
"immutable": "^3.8.2",
"jest": "^24.8.0",
"jquery": "^3.4.1",
"jquery-ui": "1.12.1",
"jquery-ui-css": "1.11.4",
"js-interpreter": "^1.4.6",
"json2csv": "^3.11.5",
"loader-utils": "^1.1.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"notifyjs-browser": "^0.4.2",
"prettier-eslint-cli": "^4.7.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-data-grid": "^3.0.0",
"react-dom": "^16.8.6",
"react-joyride": "^1.11.1",
"redux": "^4.0.1",
"redux-thunk": "^2.2.0",
"sass-loader": "^7.1.0",
"scratch-blocks": "0.1.0-prerelease.1558719162",
"sha1": "^1.1.1",
"stylelint": "^10.0.1",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"stylelint-webpack-plugin": "^0.10.5",
"svg-sprite-loader": "^4.1.6",
"svgo": "^1.2.2",
"svgo-loader": "^2.2.0",
"trackjs": "^2.10.2",
"vinyl-paths": "^2.1.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-merge-and-include-globally": "^2.1.16"
},
"dependencies": {
"@binary-com/smartcharts": "^0.3.9",
"commander": "^2.20.0",
"concat-stream": "^2.0.0",
"core-js": "^2.6.5",
"gh-pages": "^2.0.1",
"mobx": "^5.9.4",
"mobx-react": "^5.4.4",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-render-html": "^0.6.0",
"react-transition-group": "^4.0.1"
}
}