forked from binary-com/binary-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.53 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
{
"name": "binary-bot",
"description": "Visual automation for binary.com",
"bin": {
"bot": "lib/index.js"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/.jest"
],
"testPathIgnorePatterns": [
"/node_modules/",
"tools.js"
]
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"scripts": {
"start": "gulp watch",
"test": "eslint src/ && jest -w 10 --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"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",
"build": "webpack --config webpack.config.cli.js",
"precommit": "lint-staged"
},
"author": "Binary.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@binary-com/binary-indicators": "^1.6.0",
"app-module-path": "^2.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.0",
"binary-live-api": "^29.0.0",
"binary-utils": "^4.23.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"deep-diff": "^0.3.8",
"del": "^3.0.0",
"es6-plato": "^1.1.5",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-binary": "^1.0.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"file-saver": "^1.3.3",
"gulp": "^4.0.0",
"gulp-clean-css": "^3.9.0",
"gulp-concat-css": "^2.3.0",
"gulp-concat-util": "^0.5.5",
"gulp-connect": "^5.0.0",
"gulp-mustache": "^4.1.0",
"gulp-open": "^3.0.1",
"gulp-remote-src": "^0.4.4",
"gulp-rename": "^1.2.2",
"gulp-rev": "^8.1.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.2",
"gulp-watch": "^4.3.11",
"husky": "^0.14.3",
"i18next-scanner": "1.9.4",
"immutable": "^3.8.2",
"jest": "^24.7.1",
"jquery": "3.2.1",
"jquery-ui": "1.12.1",
"jquery-ui-css": "1.11.4",
"js-interpreter": "^1.4.6",
"json2csv": "^3.11.5",
"lint-staged": "^6.0.0",
"loader-utils": "^1.1.0",
"notifyjs-browser": "^0.4.2",
"prettier-eslint-cli": "^4.7.0",
"prop-types": "^15.6.0",
"react": "^16.4.0",
"react-data-grid": "^3.0.0",
"react-dom": "^16.4.0",
"react-joyride": "^1.11.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sha1": "^1.1.1",
"trackjs": "^2.10.2",
"vinyl-paths": "^2.1.0",
"webpack": "^3.10.0",
"webpack-stream": "^4.0.0"
},
"dependencies": {
"@binary-com/smartcharts": "^0.3.9",
"binary-style": "^0.2.4",
"blockly": "github:google/blockly#59e5ac6",
"commander": "^2.12.2",
"concat-stream": "^1.6.0",
"core-js": "^2.6.5",
"gh-pages": "^2.0.1",
"mobx": "^5.0.3",
"mobx-react": "^5.1.8",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-render-html": "^0.5.2",
"react-transition-group": "^2.3.1"
}
}