Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ module.exports = {
},
parserOptions: {
ecmaVersion: 8,
sourceType: 'module',
allowImportExportEverywhere: true,
},
globals: {
console: false,
Expand Down
24,311 changes: 20,933 additions & 3,378 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@
"lint": "next lint"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@stoqey/ib": "^1.2.15",
"@tinkoff/invest-openapi-js-sdk": "^1.5.0",
"antd": "^4.18.7",
"apexcharts": "^3.33.0",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there anything extra here? Are all modules used?

"axios": "^0.26.0",
"bootstrap": "^5.1.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-loops": "^0.3.0",
Expand All @@ -22,14 +27,21 @@
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0.11.0",
"apexcharts": "^3.33.0",
"bootstrap": "^5.1.3",
"font-awesome": "^4.7.0",
"highcharts": "^9.3.3",
"highcharts-react-official": "^3.1.0",
"kaktana-react-lightweight-charts": "^2.0.0",
"lightweight-charts": "^3.8.0",
"next": "12.0.4",
"react": "17.0.2",
"react-apexcharts": "^1.3.9",
"react-dom": "17.0.2",
"react-intl": "^5.24.3",
"react-loader-spinner": "^5.1.4",
"react-perfect-scrollbar": "^1.5.8",
"react-stockcharts": "^0.7.8",
"react-tradingview-embed": "^2.2.6",
"react-tradingview-widget": "^1.3.2",
"reactstrap": "^9.0.1",
"styled-components": "^5.3.3"
},
Expand Down
5 changes: 4 additions & 1 deletion pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import HeadHTML from '../components/layout/HeadHTML'
import '../styles/globals.css'
import 'bootstrap/dist/css/bootstrap.min.css';
import 'highcharts/css/stocktools/gui.css'
import 'highcharts/css/annotations/popup.css'
import './widget.js'
import App from 'next/app'
import { IntlProvider } from 'react-intl'
import useLang from '../content/locale'
import { useRouter } from 'next/router'

import 'antd/dist/antd.css';
function MyApp({ Component, pageProps }) {
const router = useRouter()
const { messages, locale, defaultLocale } = useLang(router)
Expand Down
Loading