Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Holo-Host/holo-communities
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Hylozoic/hylo-happ-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 16 commits
  • 164 files changed
  • 1 contributor

Commits on Jul 19, 2022

  1. Copy the full SHA
    929909b View commit details

Commits on Jul 20, 2022

  1. Copy the full SHA
    5282678 View commit details
  2. Copy the full SHA
    9c7bdea View commit details
  3. Fix linting error

    lorenjohnson committed Jul 20, 2022
    Copy the full SHA
    cf70fb9 View commit details

Commits on Jul 21, 2022

  1. Copy the full SHA
    50627a8 View commit details
  2. Update README

    lorenjohnson committed Jul 21, 2022
    Copy the full SHA
    48abb2c View commit details
  3. Update naming in configs

    lorenjohnson committed Jul 21, 2022
    Copy the full SHA
    3e3cfdd View commit details
  4. Copy the full SHA
    478adb0 View commit details
  5. Update config file

    lorenjohnson committed Jul 21, 2022
    Copy the full SHA
    5d45ab6 View commit details
  6. Update example .env

    lorenjohnson committed Jul 21, 2022
    Copy the full SHA
    599e93a View commit details

Commits on Jul 22, 2022

  1. Cleaned-up logging, widely updated dependencies. Updated Query Set re…

    …sponse transformer to iterate over querySet.Items
    lorenjohnson committed Jul 22, 2022
    Copy the full SHA
    b0a4f36 View commit details
  2. Working comments

    lorenjohnson committed Jul 22, 2022
    Copy the full SHA
    70b6a3c View commit details
  3. Copy the full SHA
    8b0f955 View commit details
  4. Naive Feed sorting

    lorenjohnson committed Jul 22, 2022
    Copy the full SHA
    94ac5bd View commit details
  5. Copy the full SHA
    f9d3b04 View commit details

Commits on Oct 20, 2022

  1. Copy the full SHA
    689c1ad View commit details
Showing with 6,191 additions and 9,722 deletions.
  1. +2 −2 .circleci/config.yml
  2. +2 −9 .env.example
  3. +0 −1 .gitignore
  4. +1 −1 .nvmrc
  5. +0 −17 .storybook/config.js
  6. +0 −29 .storybook/webpack.config.js
  7. +5 −11 README.md
  8. +2 −15 app.json
  9. +1 −7 config/postcss.config.js
  10. +1 −0 config/webpack.config.holochain.js
  11. +4 −1 config/webpack.config.prod.js
  12. +30 −38 package.json
  13. +0 −1 public/index.html
  14. BIN public/william-white-34988-community.jpg
  15. +0 −35 src/client/filepicker.js
  16. +5 −0 src/client/holochain/agentPubKeyParser.js
  17. +137 −0 src/client/holochain/index.js
  18. +49 −0 src/client/holochain/recordParser.js
  19. +0 −12 src/components/Avatar/Avatar.stories.js
  20. +0 −27 src/components/ChangeImageButton/ChangeImageButton.connector.js
  21. +0 −14 src/components/ChangeImageButton/ChangeImageButton.js
  22. +0 −15 src/components/ChangeImageButton/ChangeImageButton.scss
  23. +0 −37 src/components/ChangeImageButton/ChangeImageButton.store.js
  24. +0 −42 src/components/ChangeImageButton/ChangeImageButton.store.test.js
  25. +0 −51 src/components/ChangeImageButton/ChangeImageButton.test.js
  26. +0 −3 src/components/ChangeImageButton/index.js
  27. +2 −1 src/components/FeedList/FeedList.holochain.connector.js
  28. +5 −11 src/components/FeedList/FeedList.js
  29. +1 −5 src/components/FeedList/index.js
  30. +2 −2 src/components/HolochainSignalsSubscriber/HolochainSignalsSubscriber.js
  31. +9 −5 src/components/HyloEditor/HyloEditor.js
  32. +0 −16 src/components/PostCard/PostBody/PostBody.scss
  33. +0 −10 src/components/PostCard/PostBody/PostBody.test.js
  34. +0 −24 src/components/PostCard/PostBody/__snapshots__/PostBody.test.js.snap
  35. +1 −2 src/components/PostCard/PostCard.js
  36. +0 −25 src/components/PostCard/PostCard.test.js
  37. +5 −18 src/components/PostCard/PostDetails/PostDetails.js
  38. +1 −11 src/components/PostCard/PostDetails/PostDetails.test.js
  39. +0 −27 src/components/PostCard/PostImage/PostImage.connector.js
  40. +0 −20 src/components/PostCard/PostImage/PostImage.connector.test.js
  41. +1 −1 src/components/PostCard/PostImage/PostImage.js
  42. +2 −2 src/components/PostCard/PostImage/index.js
  43. +1 −11 src/components/PostCard/PostTitle/PostTitle.test.js
  44. +0 −40 src/components/PostCard/samplePost.js
  45. +0 −51 src/components/PostEditor/AttachmentManager/AttachmentManager.connector.js
  46. +0 −139 src/components/PostEditor/AttachmentManager/AttachmentManager.js
  47. +0 −149 src/components/PostEditor/AttachmentManager/AttachmentManager.scss
  48. +0 −103 src/components/PostEditor/AttachmentManager/AttachmentManager.store.js
  49. +0 −79 src/components/PostEditor/AttachmentManager/AttachmentManager.store.test.js
  50. +0 −80 src/components/PostEditor/AttachmentManager/AttachmentManager.test.js
  51. +0 −49 src/components/PostEditor/AttachmentManager/__snapshots__/AttachmentManager.store.test.js.snap
  52. +0 −201 src/components/PostEditor/AttachmentManager/__snapshots__/AttachmentManager.test.js.snap
  53. +0 −4 src/components/PostEditor/AttachmentManager/index.js
  54. +3 −22 src/components/PostEditor/PostEditor.connector.js
  55. +0 −4 src/components/PostEditor/PostEditor.connector.test.js
  56. +35 −37 src/components/PostEditor/PostEditor.holochain.connector.js
  57. +48 −54 src/components/PostEditor/PostEditor.js
  58. +0 −10 src/components/PostEditor/__snapshots__/PostEditor.connector.test.js.snap
  59. +0 −154 src/components/PostEditor/__snapshots__/PostEditor.test.js.snap
  60. +1 −5 src/components/PostEditor/index.js
  61. +1 −33 src/config/index.js
  62. +0 −88 src/data-interfaces/HoloCommunitiesDnaInterface.js
  63. +0 −14 src/data-interfaces/HoloCommunitiesDnaInterfaceLoaders.js
  64. +0 −315 src/data-interfaces/HoloFuelDnaInterface.js
  65. +112 −0 src/data-interfaces/HyloHappInterface.js
  66. +18 −0 src/data-interfaces/HyloHappInterfaceLoaders.js
  67. +0 −134 src/graphql-server/holochainClient.js
  68. +0 −188 src/graphql-server/resolvers.js
  69. +0 −1 src/graphql/fragments/MeCompleteFragment.graphql
  70. +0 −1 src/graphql/fragments/meQueryFragment.js
  71. +5 −5 src/graphql/mutations/HolochainCreatePostMutation.graphql
  72. +0 −1 src/graphql/queries/HolochainCurrentUserQuery.graphql
  73. 0 src/{graphql-server → graphql/server}/HolochainWebSocketLink.js
  74. 0 src/{graphql-server → graphql/server}/__snapshots__/dataMapping.test.js.snap
  75. +3 −3 src/{graphql-server → graphql/server}/apolloClient.js
  76. +17 −13 src/{graphql-server → graphql/server}/dataMapping.js
  77. 0 src/{graphql-server → graphql/server}/dataMapping.test.js
  78. 0 src/{graphql-server → graphql/server}/index.js
  79. +200 −0 src/graphql/server/resolvers.js
  80. +8 −43 src/{graphql-server → graphql/server}/schema.graphql
  81. +1 −1 src/index.js
  82. +0 −2 src/router/AuthRoute/AuthRoute.connector.js
  83. +3 −9 src/router/AuthRoute/AuthRoute.js
  84. +7 −7 src/router/index.js
  85. +2 −13 src/routes/CommunitySettings/CommunitySettingsTab/CommunitySettingsTab.js
  86. +0 −38 src/routes/CommunitySettings/CommunitySettingsTab/__snapshots__/CommunitySettingsTab.test.js.snap
  87. +0 −107 src/routes/CommunitySidebar/CommunitySidebar.test.js
  88. +83 −0 src/routes/CreateCommunity/Domain/Domain.holochain.connector.js
  89. +4 −2 src/routes/CreateCommunity/Domain/Domain.js
  90. +3 −2 src/routes/CreateCommunity/Domain/index.js
  91. +2 −1 src/routes/CreateCommunity/Name/Name.js
  92. +2 −1 src/routes/CreateCommunity/Privacy/Privacy.js
  93. +2 −1 src/routes/CreateCommunity/Review/Review.js
  94. +2 −4 src/routes/Feed/Feed.js
  95. +1 −5 src/routes/Feed/index.js
  96. +2 −1 src/routes/JoinCommunity/JoinCommunity.js
  97. +1 −5 src/routes/Messages/index.js
  98. +2 −13 src/routes/NetworkSettings/NetworkSettingsTab/NetworkSettingsTab.js
  99. +0 −3 src/routes/NonAuthLayout/HolochainLogin/index.js
  100. +1 −3 src/routes/NonAuthLayout/Login/Login.connector.js
  101. +0 −1 src/routes/NonAuthLayout/Login/Login.connector.test.js
  102. +0 −2 src/routes/NonAuthLayout/Login/Login.js
  103. +1 −1 src/routes/NonAuthLayout/Login/Login.store.js
  104. +0 −6 src/routes/NonAuthLayout/Login/Login.test.js
  105. +0 −98 src/routes/NonAuthLayout/Login/__snapshots__/Login.test.js.snap
  106. +2 −1 src/routes/NonAuthLayout/LoginCheck/LoginCheck.holochain.connector.js
  107. +1 −7 src/routes/NonAuthLayout/LoginCheck/index.js
  108. +8 −19 src/routes/NonAuthLayout/NonAuthLayout.js
  109. 0 ...Login/HolochainLogin.holochain.connector.js → RegisterAgent/RegisterAgent.holochain.connector.js}
  110. +3 −3 src/routes/NonAuthLayout/{HolochainLogin/HolochainLogin.js → RegisterAgent/RegisterAgent.js}
  111. 0 src/routes/NonAuthLayout/{HolochainLogin/HolochainLogin.scss → RegisterAgent/RegisterAgent.scss}
  112. +4 −0 src/routes/NonAuthLayout/RegisterAgent/index.js
  113. +1 −3 src/routes/NonAuthLayout/Signup/Signup.connector.js
  114. +0 −1 src/routes/NonAuthLayout/Signup/Signup.connector.test.js
  115. +1 −3 src/routes/NonAuthLayout/Signup/Signup.js
  116. +0 −5 src/routes/NonAuthLayout/Signup/Signup.test.js
  117. +0 −110 src/routes/NonAuthLayout/Signup/__snapshots__/Signup.test.js.snap
  118. +2 −2 src/routes/PostDetail/Comments/Comment/Comment.js
  119. +1 −5 src/routes/PostDetail/Comments/index.js
  120. +2 −2 src/routes/PostDetail/PostDetail.holochain.connector.js
  121. +1 −5 src/routes/PostDetail/index.js
  122. +0 −2 src/routes/PrimaryLayout/PrimaryLayout.connector.js
  123. +5 −8 src/routes/PrimaryLayout/PrimaryLayout.holochain.connector.js
  124. +78 −127 src/routes/PrimaryLayout/PrimaryLayout.js
  125. +1 −5 src/routes/PrimaryLayout/components/TopNav/MessagesDropdown/index.js
  126. +1 −5 src/routes/PrimaryLayout/components/TopNav/NotificationsDropdown/index.js
  127. +1 −5 src/routes/PrimaryLayout/index.js
  128. +0 −4 src/routes/Search/Search.store.test.js
  129. +0 −3 src/routes/Signup/Review/Review.connector.js
  130. +1 −2 src/routes/Signup/Review/Review.js
  131. +1 −7 src/routes/Signup/UploadImageSection/index.js
  132. +0 −2 src/routes/Signup/UploadPhoto/UploadPhoto.connector.js
  133. +0 −21 src/routes/UserSettings/NotificationSettingsTab/NotificationSettingsTab.test.js
  134. +0 −22 src/server/apiProxy.js
  135. +1 −3 src/server/appMiddleware.js
  136. +0 −5 src/server/index.js
  137. +0 −11 src/server/newrelic.js
  138. +0 −20 src/server/proxy.test.js
  139. +13 −7 src/store/actions/fetchForCommunity.js
  140. +0 −1 src/store/constants.js
  141. +0 −52 src/store/middleware/apiMiddleware.js
  142. +1 −1 src/store/middleware/apolloMiddleware.js
  143. +0 −6 src/store/middleware/index.js
  144. +0 −31 src/store/middleware/mixpanelMiddleware.js
  145. +0 −70 src/store/middleware/mixpanelMiddleware.test.js
  146. +0 −45 src/store/middleware/userFetchedMiddleware.js
  147. +0 −22 src/store/models/Attachment.js
  148. +0 −1 src/store/models/Me.js
  149. +0 −1 src/store/models/MessageThread.js
  150. +0 −2 src/store/models/index.js
  151. +0 −1 src/store/presenters/__snapshots__/presentPost.test.js.snap
  152. +0 −1 src/store/presenters/presentPost.js
  153. +0 −6 src/store/reducers/index.js
  154. +0 −3 src/store/reducers/intercom.js
  155. +0 −6 src/store/reducers/mixpanel.js
  156. +0 −33 src/store/reducers/ormReducer/index.test.js
  157. +0 −2 src/store/reducers/resetStore.js
  158. +0 −1 src/store/selectors/getIntercom.js
  159. +0 −1 src/store/selectors/getMixpanel.js
  160. +18 −7 src/util/holochain.js
  161. +0 −21 src/util/mobileRedirect.js
  162. +0 −12 src/util/mobileRedirect.test.js
  163. +2 −8 src/util/navigation.js
  164. +5,203 −6,058 yarn.lock
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
version: 2
jobs:
build:
working_directory: ~/Hylozoic/hylo-evo
working_directory: ~/Hylozoic/hylo-happ-ui
parallelism: 1
shell: /bin/bash --login
# CircleCI 2.0 does not support environment variables that refer to each other the same way as 1.0 did.
@@ -51,7 +51,7 @@ jobs:
- run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS
# This is based on your 1.0 configuration file or project settings
- run:
working_directory: ~/Hylozoic/hylo-evo
working_directory: ~/Hylozoic/hylo-happ-ui
command: nvm install 10.13.0 && nvm alias default 10.13.0
# Upgrade yarn
- run: curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
11 changes: 2 additions & 9 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
FILEPICKER_API_KEY=
MIXPANEL_TOKEN=
INTERCOM_APP_ID=
PROXY_HOST=http://hylo-landing.surge.sh
REDIRECT_TO_APP_STORE=

# Holochain
HOLOCHAIN_WEBSOCKET_URI=ws://localhost:3400
HOLOCHAIN_WEBSOCKET_URI=ws://localhost:14202
COMMUNITY_DNA_INSTANCE_ID=__communities
HOLOFUEL_DNA_INSTANCE_ID=__holofuel
HOLOCHAIN_GRAPHQL_PATH=community/graphql/graphql
# HOLOCHAIN_BUILD_PATH=/path/to/hylo-holo-dnas/hylo-ui
# HOLOCHAIN_BUILD_PATH=/path/to/hylo-happ
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@ coverage
build
build-hc
es5
storybook-static

# misc
.DS_Store
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.13.0
14
17 changes: 0 additions & 17 deletions .storybook/config.js

This file was deleted.

29 changes: 0 additions & 29 deletions .storybook/webpack.config.js

This file was deleted.

16 changes: 5 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
# hylo-evo
# UI for Hylo on Holochain

## Getting Started

1. `git clone git@github.com:Hylozoic/hylo-evo.git`
2. `cd hylo-evo`
1. `git clone git@github.com:Hylozoic/hylo-happ-ui.git`
2. `cd hylo-happ-ui`

## Running local:

1. `yarn install`
2. `yarn start`

## Building for standard Hylo API deployment
## Running Holochain Hylo Holochain App

1. Run `yarn build`
2. Once complete Hylo is ready to be served at `<projectRoot>/build`
This UI requires a locally running instance of the Hylo Holochain Application. See instructions for building or running the Hylo hApp here: [https://github.com/Hylozoic/hylo-happ](https://github.com/Hylozoic/hylo-happ)

## Building for Holochain

1. Optionally set `HOLOCHAIN_BUILD_PATH` in your local `.env` file. Defaults to `<projectRoot>/build-hc`
2. Run `yarn build:hc`
3. Once complete Hylo+Holochain is ready to be served at `<HOLOCHAIN_BUILD_PATH>`

## Further documentation

17 changes: 2 additions & 15 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"name": "hylo-evo",
"name": "hylo-happ-ui",
"scripts": {
},
"env": {
"API_HOST": {
"required": true
},
"FILEPICKER_API_KEY": {
"required": true
},
"NODE_MODULES_CACHE": {
"required": true
},
@@ -27,23 +24,13 @@
"ROLLBAR_ENV": {
"required": true
},
"MIXPANEL_TOKEN": {
"required": true
},
"INTERCOM_APP_ID": {
"required": true
},
"REDIRECT_TO_APP_STORE": {
"required": true
},
"HOLOCHAIN_WEBSOCKET_URI": {
"required": true
},
"HOLOCHAIN_GRAPHQL_PATH": {
"required": true
},
"COMMUNITY_DNA_INSTANCE_ID": "__community",
"HOLOFUEL_DNA_INSTANCE_ID": "__holofuel"
"COMMUNITY_DNA_INSTANCE_ID": "__hylo"
},
"formation": {
},
8 changes: 1 addition & 7 deletions config/postcss.config.js
Original file line number Diff line number Diff line change
@@ -3,13 +3,7 @@ module.exports = {
'postcss-flexbugs-fixes': {},
'postcss-preset-env': {
autoprefixer: {
flexbox: 'no-2009',
browsers: [
'>1%',
'last 4 versions',
'Firefox ESR',
'not ie < 9' // React doesn't support IE8 anyway
]
flexbox: 'no-2009'
},
stage: 3
}
1 change: 1 addition & 0 deletions config/webpack.config.holochain.js
Original file line number Diff line number Diff line change
@@ -3,5 +3,6 @@ const paths = require('./paths')

// Holochain specifics for build
prodConfig.output.path = process.env['HOLOCHAIN_BUILD_PATH'] || paths.hcBuild
prodConfig.devtool = false

module.exports = prodConfig
5 changes: 4 additions & 1 deletion config/webpack.config.prod.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const path = require('path')
const webpack = require('webpack')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const HtmlWebpackPlugin = require('html-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const ManifestPlugin = require('webpack-manifest-plugin')
@@ -293,7 +294,9 @@ module.exports = {
// having to parse `index.html`.
new ManifestPlugin({
fileName: 'asset-manifest.json'
})
}),
// webpack-bundle-analyzer
new BundleAnalyzerPlugin()
],
// Some libraries import Node modules but don't use them in the browser.
// Tell Webpack to provide empty mocks for them so importing them works.
68 changes: 30 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hylo-evo",
"version": "0.1.0",
"name": "hylo-happ-ui",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "rm -rf ./node_modules/.cache/babel-loader && node --preserve-symlinks scripts/start.js",
@@ -10,49 +10,45 @@
"lint": "yarn exec standard",
"lint:fix": "yarn exec standard --fix",
"server": "./node_modules/.bin/babel-node --config-file ./config/babel.config.js scripts/serveUniversal.js",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook"
"analyze": "webpack-bundle-analyzer build/bundle-stats.json"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@holochain/hc-web-client": "0.5.0",
"@storybook/addon-actions": "^v5.0.10",
"@storybook/addon-info": "^5.0.10",
"@storybook/addon-links": "^v5.0.10",
"@storybook/addons": "^v5.0.10",
"@storybook/react": "^v5.0.10",
"@holochain/client": "0.6.0",
"@msgpack/msgpack": "^2.7.2",
"@svgr/webpack": "4.1.0",
"@types/react": "^16.8.14",
"@types/react-css-modules": "^4.6.2",
"@types/react-css-modules": "^4.6.4",
"ansi-styles": "^3.2.1",
"apollo-cache": "^1.3.2",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-context": "^1.0.19",
"apollo-utilities": "^1.3.2",
"apollo-cache": "^1.3.5",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-logger": "^1.2.3",
"apollo-link-retry": "^2.2.15",
"apollo-link-schema": "^1.2.4",
"apollo-link-retry": "^2.2.16",
"apollo-link-schema": "^1.2.5",
"apollo-utilities": "^1.3.4",
"app-module-path": "^2.2.0",
"autoproxy": "^1.0.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-plugin-import-graphql": "^2.7.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.5",
"babel-plugin-data-stylename": "0.1.1",
"babel-plugin-import-graphql": "^2.7.0",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-named-asset-import": "^0.3.1",
"babel-plugin-react-css-modules": "levity/babel-plugin-react-css-modules#ab83008",
"babel-preset-react-app": "^10.0.1",
"bfj": "6.1.1",
"bootstrap": "4.0.0-alpha.6",
"case-sensitive-paths-webpack-plugin": "2.2.0",
@@ -72,12 +68,12 @@
"dotenv": "6.0.0",
"dotenv-safe": "^4.0.4",
"dotenv-webpack": "^1.7.0",
"draft-convert": "2.0.1",
"draft-js": "^0.10.4",
"draft-js-export-html": "1.2.0",
"draft-js-linkify-plugin": "2.0.1",
"draft-js-mention-plugin": "2.0.1",
"draft-js-plugins-editor": "2.0.3",
"draft-convert": "2.1.12",
"draft-js": "^0.11.7",
"draft-js-export-html": "1.4.1",
"@draft-js-plugins/linkify": "^4.2.1",
"@draft-js-plugins/mention": "^5.2.1",
"@draft-js-plugins/editor": "^4.1.3",
"ent": "^2.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
@@ -90,7 +86,6 @@
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.12.4",
"express": "^4.15.2",
"faker": "^4.1.0",
"file-loader": "2.0.0",
"filesize": "3.3.0",
"fs-extra": "7.0.1",
@@ -106,8 +101,8 @@
"identity-obj-proxy": "3.0.0",
"immutable": "^3.8.1",
"inflection": "^1.12.0",
"isomorphic-fetch": "^3.0.0",
"inquirer": "^4.0.1",
"ismobilejs": "^0.4.1",
"jest": "23.6.0",
"jest-pnp-resolver": "1.0.2",
"jest-resolve": "23.6.0",
@@ -119,10 +114,8 @@
"lru-cache": "^4.1.1",
"mime": "^2.0.3",
"mini-css-extract-plugin": "0.5.0",
"mixpanel-browser": "^2.22.4",
"mock-fs": "^4.2.0",
"moment": "^2.24.0",
"newrelic": "^5.6.3",
"moment": "^2.29.4",
"node-sass": "^4.11.0",
"normalize.css": "^7.0.0",
"object-assign": "4.1.1",
@@ -151,16 +144,15 @@
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.8.6",
"react-intercom": "^1.0.14",
"react-particles-js": "^2.1.0",
"react-redux": "^6.0.0",
"react-responsive": "^8.0.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-stripe-checkout": "^2.6.3",
"react-textarea-autosize": "^7.1.0",
"react-tooltip": "^3.4.0",
"react-transition-group": "1.x",
"react-tooltip":"^4.2.21",
"react-transition-group": "^1.2.1",
"recursive-readdir": "2.2.1",
"redux": "^3.7.2",
"redux-logger": "3.0.6",
@@ -192,6 +184,7 @@
"validator": "^8.1.0",
"velocity-react": "^1.3.3",
"webpack": "4.28.3",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "3.3.1",
"webpack-manifest-plugin": "2.0.4",
"whatwg-fetch": "2.0.3"
@@ -200,7 +193,6 @@
"standard": "12.0.1"
},
"engines": {
"node": "10.13.0",
"yarn": "^1.1.0"
},
"browserslist": [
1 change: 0 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<!doctype html>
<html lang="en">
<head>
<script id="newrelic"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.png">
Binary file removed public/william-white-34988-community.jpg
Binary file not shown.
Loading