-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
99 lines (99 loc) · 3.29 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
{
"name": "bfx-report-ui",
"version": "2.48.0",
"description": "Report page to overview the user actions in Bitfinex and download related csv files",
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/bfx-report-ui.git"
},
"keywords": [
"bitfinex"
],
"author": "Bitfinex",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitfinexcom/bfx-report-ui/issues"
},
"homepage": "/",
"dependencies": {
"@bitfinex/lib-js-util-base": "git+https://github.com/bitfinexcom/lib-js-util-base.git",
"@blueprintjs/core": "^3.15.0",
"@blueprintjs/datetime": "^3.15.2",
"@blueprintjs/icons": "^3.7.0",
"@blueprintjs/select": "^3.8.0",
"@blueprintjs/table": "3.5.0",
"@blueprintjs/timezone": "3.10.1",
"axios": "1.7.4",
"classnames": "2.2.6",
"connected-react-router": "6.9.2",
"flexboxgrid2": "7.2.1",
"history": "^4.9.0",
"i18next": "15.0.7",
"i18next-browser-languagedetector": "3.0.1",
"i18next-http-backend": "1.4.0",
"js-cookie": "2.2.1",
"lightweight-charts": "^1.2.1",
"lodash": "4.17.21",
"memoize-one": "^5.0.2",
"moment": "2.29.4",
"moment-timezone": "0.5.35",
"normalize.css": "8.0.1",
"prop-types": "^15.7.2",
"query-string": "^6.4.2",
"react": "^16.13.1",
"react-dom": "^16.8.6",
"react-i18next": "10.5.2",
"react-redux": "7.2.8",
"react-router-dom": "^5.0.0",
"react-swipeable": "^5.5.1",
"react-transition-group": "^2.6.1",
"recharts": "2.1.13",
"redux": "4.2.0",
"redux-logger": "3.0.6",
"redux-persist": "6.0.0",
"redux-saga": "0.16.2",
"sass": "1.50.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^5.0.0",
"cross-env": "^7.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^7.20.3 ",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.32.2",
"husky": "^1.3.1",
"react-scripts": "5.0.1",
"react-test-renderer": "16.8.6"
},
"scripts": {
"prepare": "node scripts/copyFiles && node scripts/handleBptIcons",
"start": "cross-env REACT_APP_ENV=development FAST_REFRESH=false ESLINT_NO_DEV_ERRORS=true react-scripts start",
"startAll": "concurrently \"npm run start\" \"npm run --prefix ../bfx-reports-framework startSimulEnv\" \"npm run --prefix ../bfx-reports-framework startServDev\" \"npm run --prefix ../bfx-reports-framework startDev\"",
"startAllWeb": "concurrently \"npm run start\" \"npm run --prefix ../bfx-report startSimulEnv\" \"npm run --prefix ../bfx-report startServDev\" \"npm run --prefix ../bfx-report startDev\"",
"prebuild": "npm run prepare && npm run lint",
"build": "cross-env REACT_APP_ENV=$CI_ENVIRONMENT_NAME react-scripts build",
"test": "react-scripts test --env=jsdom --modulePaths=src --verbose --color --watchAll=false",
"lint": "eslint src scripts --ignore-path .gitignore",
"lintFix": "eslint src scripts --fix --ignore-path .gitignore"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"engines": {
"node": ">=18.17.1",
"npm": ">=9.6.7"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}