forked from bitfinexcom/bfx-hf-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.11 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
{
"name": "bfx-hf-chart",
"version": "1.0.12",
"description": "HF Financial Charting Library",
"main": "dist/components/Chart/Chart.js",
"author": "Bitfinex",
"homepage": "http://f3rno.github.io/bfx-hf-chart/",
"contributors": [
"Cris Mihalache <cris.m@bitfinex.com> (https://www.bitfinex.com)"
],
"license": "Apache-2.0",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"bfx-api-node-models": "^1.4.1",
"bfx-hf-indicators": "git+https://github.com/bitfinexcom/bfx-hf-indicators.git#v2.1.1",
"bfx-hf-util": "git+https://github.com/bitfinexcom/bfx-hf-util.git#v1.0.12",
"classnames": "^2.2.6",
"gh-pages": "^2.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mouse-wheel": "^1.2.0",
"randomcolor": "^0.5.4",
"react": "^16.12.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.12.0",
"react-onclickoutside": "^6.9.0",
"react-scripts": "4.0.3"
},
"scripts": {
"cra-build": "react-scripts build",
"pre-deploy": "npm run cra-build",
"deploy-gh-pages": "gh-pages -d build",
"start": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-app": "babel ./src -d ./dist",
"build-chart-css": "cp src/components/Chart/Chart.css dist/components/Chart/Chart.css",
"build-dropdown-css": "cp src/components/Dropdown/Dropdown.css dist/components/Dropdown/Dropdown.css",
"build-spinner-css": "cp src/components/LoadingBeeSpinner/LoadingBeeSpinner.css dist/components/LoadingBeeSpinner/LoadingBeeSpinner.css",
"build-isettings-css": "cp src/components/IndicatorSettingsModal/IndicatorSettingsModal.css dist/components/IndicatorSettingsModal/IndicatorSettingsModal.css",
"build-icon-font": "cp -r src/components/Chart/icon_font dist/components/Chart/icon_font",
"build": "npm run build-app && npm run build-chart-css && npm run build-dropdown-css && npm run build-spinner-css && npm run build-isettings-css && npm run build-icon-font"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"react-virtualized": "^9.21.2"
},
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-hf-chart.git"
},
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-hf-chart/issues"
},
"keywords": [
"honey framework",
"bitfinex",
"bitcoin",
"BTC"
]
}