chore(webapp): add missing packages

This commit is contained in:
Ahmed Bouhuolia
2023-10-03 22:05:57 +02:00
parent d2242b7744
commit 951e360405
28 changed files with 193 additions and 108 deletions

View File

@@ -1,22 +1,19 @@
// @ts-nocheck
import React from 'react';
import moment from 'moment';
import _ from 'lodash';
import * as R from 'ramda';
import Currencies from 'js-money/lib/currency';
import clsx from 'classnames';
import { Intent } from '@blueprintjs/core';
import Currency from 'js-money/lib/currency';
import accounting from 'accounting';
import deepMapKeys from 'deep-map-keys';
import { createSelectorCreator, defaultMemoize } from 'reselect';
import { isEqual, castArray, isEmpty, includes, pickBy } from 'lodash';
import jsCookie from 'js-cookie';
import { deepMapKeys } from './map-key-deep';
export * from './deep';
export const getCookie = (name, defaultValue) =>
_.defaultTo(jsCookie.get(name), defaultValue);