2019-01-21 15:11:10 +00:00
|
|
|
{
|
2019-08-29 11:22:09 +00:00
|
|
|
"name": "appsmith",
|
2019-01-21 15:11:10 +00:00
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
2019-08-20 09:39:08 +00:00
|
|
|
"engines": {
|
2021-02-09 13:44:50 +00:00
|
|
|
"node": "^14.15.4",
|
|
|
|
|
"npm": "^6.14.10"
|
2019-08-20 09:39:08 +00:00
|
|
|
},
|
2020-06-08 09:00:58 +00:00
|
|
|
"cracoConfig": "craco.dev.config.js",
|
2019-01-21 15:11:10 +00:00
|
|
|
"dependencies": {
|
2021-01-13 05:23:16 +00:00
|
|
|
"@blueprintjs/core": "^3.36.0",
|
2021-08-31 09:41:37 +00:00
|
|
|
"@blueprintjs/datetime": "^3.23.6",
|
2019-09-23 11:57:55 +00:00
|
|
|
"@blueprintjs/icons": "^3.10.0",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
"@blueprintjs/popover2": "^0.5.0",
|
2019-09-18 10:19:50 +00:00
|
|
|
"@blueprintjs/select": "^3.10.0",
|
2019-11-06 12:12:41 +00:00
|
|
|
"@blueprintjs/timezone": "^3.6.0",
|
2020-11-03 13:05:40 +00:00
|
|
|
"@craco/craco": "^5.7.0",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
"@draft-js-plugins/editor": "^4.1.0",
|
2021-05-27 06:21:36 +00:00
|
|
|
"@draft-js-plugins/mention": "^4.5.1",
|
2021-03-24 22:05:04 +00:00
|
|
|
"@fusioncharts/powercharts": "^3.16.0",
|
2021-01-19 06:17:15 +00:00
|
|
|
"@github/g-emoji-element": "^1.1.5",
|
2020-04-13 08:24:13 +00:00
|
|
|
"@manaflair/redux-batch": "^1.0.0",
|
2020-05-28 18:10:26 +00:00
|
|
|
"@optimizely/optimizely-sdk": "^4.0.0",
|
2021-03-31 07:40:59 +00:00
|
|
|
"@sentry/react": "^6.2.4",
|
|
|
|
|
"@sentry/tracing": "^6.2.4",
|
2020-08-28 08:34:01 +00:00
|
|
|
"@sentry/webpack-plugin": "^1.12.1",
|
2019-12-03 09:21:06 +00:00
|
|
|
"@types/chance": "^1.0.7",
|
2019-02-10 14:14:58 +00:00
|
|
|
"@types/lodash": "^4.14.120",
|
2019-02-07 05:07:09 +00:00
|
|
|
"@types/moment-timezone": "^0.5.10",
|
2019-08-29 11:22:09 +00:00
|
|
|
"@types/nanoid": "^2.0.0",
|
2019-01-21 18:11:08 +00:00
|
|
|
"@types/node": "^10.12.18",
|
2020-06-02 07:54:31 +00:00
|
|
|
"@types/prismjs": "^1.16.1",
|
2019-02-07 05:07:09 +00:00
|
|
|
"@types/react": "^16.8.2",
|
2021-04-06 11:31:52 +00:00
|
|
|
"@types/react-custom-scrollbars": "^4.0.7",
|
2019-02-07 05:07:09 +00:00
|
|
|
"@types/react-dom": "^16.8.0",
|
2019-12-03 09:21:06 +00:00
|
|
|
"@types/react-helmet": "^5.0.14",
|
2020-05-28 18:10:26 +00:00
|
|
|
"@types/react-instantsearch-dom": "^6.3.0",
|
2019-02-10 13:06:05 +00:00
|
|
|
"@types/react-redux": "^7.0.1",
|
2019-11-22 14:02:55 +00:00
|
|
|
"@types/react-router-dom": "^5.1.2",
|
2020-06-03 10:50:10 +00:00
|
|
|
"@types/react-table": "^7.0.13",
|
2020-10-12 13:06:05 +00:00
|
|
|
"@types/styled-components": "^5.1.3",
|
2019-12-16 08:49:10 +00:00
|
|
|
"@types/tinycolor2": "^1.4.2",
|
2021-04-29 09:20:43 +00:00
|
|
|
"@types/zipcelx": "^1.5.0",
|
2021-02-10 04:59:47 +00:00
|
|
|
"@uppy/core": "^1.16.0",
|
|
|
|
|
"@uppy/dashboard": "^1.16.0",
|
|
|
|
|
"@uppy/file-input": "^1.4.22",
|
|
|
|
|
"@uppy/google-drive": "^1.5.22",
|
2021-05-20 12:03:08 +00:00
|
|
|
"@uppy/image-editor": "^0.2.4",
|
2021-02-10 04:59:47 +00:00
|
|
|
"@uppy/onedrive": "^1.1.22",
|
|
|
|
|
"@uppy/react": "^1.11.2",
|
|
|
|
|
"@uppy/url": "^1.5.16",
|
|
|
|
|
"@uppy/webcam": "^1.8.4",
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
"@welldone-software/why-did-you-render": "^4.2.5",
|
2020-05-28 18:10:26 +00:00
|
|
|
"algoliasearch": "^4.2.0",
|
2021-07-26 05:50:46 +00:00
|
|
|
"astring": "^1.7.5",
|
2021-01-06 08:28:49 +00:00
|
|
|
"axios": "^0.21.1",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
"caniuse-lite": "^1.0.30001208",
|
2019-12-03 09:21:06 +00:00
|
|
|
"chance": "^1.1.3",
|
2021-02-22 06:15:02 +00:00
|
|
|
"codemirror": "^5.59.2",
|
2020-08-03 09:14:08 +00:00
|
|
|
"copy-to-clipboard": "^3.3.1",
|
2021-03-29 15:47:22 +00:00
|
|
|
"core-js": "^3.9.1",
|
2020-07-10 09:24:06 +00:00
|
|
|
"craco-alias": "^2.1.1",
|
2020-12-17 12:13:33 +00:00
|
|
|
"cypress-log-to-output": "^1.1.2",
|
2021-08-25 14:01:04 +00:00
|
|
|
"dayjs": "^1.10.6",
|
2021-01-04 10:16:08 +00:00
|
|
|
"deep-diff": "^1.0.2",
|
2020-08-28 12:07:37 +00:00
|
|
|
"downloadjs": "^1.4.7",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
"draft-js": "^0.11.7",
|
2021-05-20 12:03:08 +00:00
|
|
|
"emoji-mart": "^3.0.1",
|
2020-11-03 13:05:40 +00:00
|
|
|
"eslint": "^7.11.0",
|
2020-04-10 08:48:00 +00:00
|
|
|
"fast-deep-equal": "^3.1.1",
|
2020-12-15 08:46:33 +00:00
|
|
|
"fast-xml-parser": "^3.17.5",
|
2021-05-09 04:59:13 +00:00
|
|
|
"flow-bin": "^0.148.0",
|
2019-11-14 09:01:23 +00:00
|
|
|
"fuse.js": "^3.4.5",
|
2020-12-17 12:13:33 +00:00
|
|
|
"fusioncharts": "^3.16.0",
|
2019-10-25 05:35:20 +00:00
|
|
|
"history": "^4.10.1",
|
2019-09-09 10:30:22 +00:00
|
|
|
"husky": "^3.0.5",
|
2021-09-05 21:17:11 +00:00
|
|
|
"immer": "^9.0.6",
|
2020-05-28 18:10:26 +00:00
|
|
|
"instantsearch.css": "^7.4.2",
|
|
|
|
|
"instantsearch.js": "^4.4.1",
|
2021-05-26 03:17:46 +00:00
|
|
|
"interweave": "^12.7.2",
|
|
|
|
|
"interweave-autolink": "^4.4.2",
|
2021-08-29 03:50:16 +00:00
|
|
|
"js-beautify": "^1.14.0",
|
2020-11-04 10:53:15 +00:00
|
|
|
"js-sha256": "^0.9.0",
|
2021-06-21 11:09:51 +00:00
|
|
|
"jshint": "^2.12.0",
|
2020-02-18 10:41:52 +00:00
|
|
|
"json-fn": "^1.1.1",
|
2019-09-09 10:30:22 +00:00
|
|
|
"lint-staged": "^9.2.5",
|
2019-12-23 12:16:33 +00:00
|
|
|
"localforage": "^1.7.3",
|
2021-05-31 08:45:01 +00:00
|
|
|
"lodash": "^4.17.21",
|
2021-04-22 03:30:09 +00:00
|
|
|
"lodash-es": "4.17.14",
|
2021-03-29 15:47:22 +00:00
|
|
|
"lodash-move": "^1.1.1",
|
2021-09-02 03:17:42 +00:00
|
|
|
"loglevel": "^1.7.1",
|
2020-12-30 07:31:20 +00:00
|
|
|
"lottie-web": "^5.7.4",
|
2021-03-08 08:24:12 +00:00
|
|
|
"marked": "^2.0.0",
|
2019-11-22 13:12:39 +00:00
|
|
|
"moment": "^2.24.0",
|
2019-11-06 12:12:41 +00:00
|
|
|
"moment-timezone": "^0.5.27",
|
2019-08-29 11:22:09 +00:00
|
|
|
"nanoid": "^2.0.4",
|
2021-07-05 11:45:21 +00:00
|
|
|
"node-forge": "^0.10.0",
|
2021-06-27 19:34:39 +00:00
|
|
|
"node-sass": "^6.0.1",
|
2019-03-21 17:42:23 +00:00
|
|
|
"normalizr": "^3.3.0",
|
2021-03-08 08:24:12 +00:00
|
|
|
"path-to-regexp": "^6.2.0",
|
2019-10-21 11:40:24 +00:00
|
|
|
"popper.js": "^1.15.0",
|
2019-09-09 08:23:53 +00:00
|
|
|
"prettier": "^1.18.2",
|
2021-06-29 10:02:18 +00:00
|
|
|
"prismjs": "^1.24.0",
|
2021-04-23 05:43:13 +00:00
|
|
|
"rc-pagination": "^3.1.3",
|
2021-08-03 06:38:01 +00:00
|
|
|
"rc-select": "^12.1.10",
|
2019-10-21 11:40:24 +00:00
|
|
|
"re-reselect": "^3.4.0",
|
2019-12-23 12:16:33 +00:00
|
|
|
"react": "^16.12.0",
|
2019-10-31 10:10:57 +00:00
|
|
|
"react-base-table": "^1.9.1",
|
2020-01-24 09:54:40 +00:00
|
|
|
"react-beautiful-dnd": "^12.2.0",
|
2021-04-05 09:22:55 +00:00
|
|
|
"react-custom-scrollbars": "^4.2.1",
|
2019-08-26 12:41:21 +00:00
|
|
|
"react-dnd": "^9.3.4",
|
|
|
|
|
"react-dnd-html5-backend": "^9.3.4",
|
2020-04-21 14:19:12 +00:00
|
|
|
"react-dnd-touch-backend": "^9.4.0",
|
2019-01-21 15:11:10 +00:00
|
|
|
"react-dom": "^16.7.0",
|
2020-04-15 11:42:11 +00:00
|
|
|
"react-google-maps": "^9.4.5",
|
2021-07-08 12:02:08 +00:00
|
|
|
"react-google-recaptcha": "^2.1.0",
|
2019-12-03 09:21:06 +00:00
|
|
|
"react-helmet": "^5.2.1",
|
2020-04-14 12:34:14 +00:00
|
|
|
"react-infinite-scroller": "^1.2.4",
|
2020-05-28 18:10:26 +00:00
|
|
|
"react-instantsearch-dom": "^6.4.0",
|
2020-04-14 12:34:14 +00:00
|
|
|
"react-json-view": "^1.19.1",
|
2021-09-08 11:00:36 +00:00
|
|
|
"react-media-recorder": "^1.5.0",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
"react-mentions": "^4.1.1",
|
2020-04-14 12:34:14 +00:00
|
|
|
"react-paginating": "^1.4.0",
|
2020-06-22 13:46:19 +00:00
|
|
|
"react-player": "^2.3.1",
|
2021-07-02 09:55:50 +00:00
|
|
|
"react-rating": "^2.0.5",
|
2021-07-23 06:40:39 +00:00
|
|
|
"react-redux": "^7.2.4",
|
2019-11-22 14:02:55 +00:00
|
|
|
"react-router": "^5.1.2",
|
|
|
|
|
"react-router-dom": "^5.1.2",
|
2020-12-02 06:27:56 +00:00
|
|
|
"react-scripts": "4.0.1",
|
2019-10-21 15:12:45 +00:00
|
|
|
"react-select": "^3.0.8",
|
2020-01-28 11:22:54 +00:00
|
|
|
"react-spring": "^8.0.27",
|
2020-06-03 10:50:10 +00:00
|
|
|
"react-table": "^7.0.0",
|
2019-12-11 10:35:07 +00:00
|
|
|
"react-tabs": "^3.0.0",
|
2021-09-08 11:00:36 +00:00
|
|
|
"react-timer-hook": "^3.0.4",
|
2020-02-18 10:41:52 +00:00
|
|
|
"react-toastify": "^5.5.0",
|
2019-12-23 12:16:33 +00:00
|
|
|
"react-transition-group": "^4.3.0",
|
2020-02-18 19:56:58 +00:00
|
|
|
"react-use-gesture": "^7.0.4",
|
2021-06-09 10:35:10 +00:00
|
|
|
"react-virtuoso": "^1.9.0",
|
2021-03-11 04:55:37 +00:00
|
|
|
"react-window": "^1.8.6",
|
2020-10-29 11:14:39 +00:00
|
|
|
"react-zoom-pan-pinch": "^1.6.1",
|
2019-02-10 13:06:05 +00:00
|
|
|
"redux": "^4.0.1",
|
2019-10-21 15:12:45 +00:00
|
|
|
"redux-form": "^8.2.6",
|
2019-12-23 12:16:33 +00:00
|
|
|
"redux-saga": "^1.1.3",
|
2019-10-21 11:40:24 +00:00
|
|
|
"reselect": "^4.0.0",
|
2021-03-08 08:24:12 +00:00
|
|
|
"scroll-into-view-if-needed": "^2.2.26",
|
2019-11-04 14:22:50 +00:00
|
|
|
"shallowequal": "^1.1.0",
|
2021-02-19 11:27:54 +00:00
|
|
|
"showdown": "^1.9.1",
|
2020-08-27 12:54:03 +00:00
|
|
|
"smartlook-client": "^4.5.1",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
"socket.io-client": "^4.0.0",
|
2020-10-12 13:06:05 +00:00
|
|
|
"styled-components": "^5.2.0",
|
2020-08-10 04:54:33 +00:00
|
|
|
"styled-system": "^5.1.5",
|
2020-05-20 11:30:53 +00:00
|
|
|
"tern": "^0.21.0",
|
2021-08-24 13:53:15 +00:00
|
|
|
"tinycolor2": "^1.4.2",
|
2020-01-17 09:28:26 +00:00
|
|
|
"toposort": "^2.0.2",
|
2019-08-29 11:22:09 +00:00
|
|
|
"ts-loader": "^6.0.4",
|
2021-04-23 05:43:13 +00:00
|
|
|
"tslib": "^2.1.0",
|
|
|
|
|
"typescript": "^4.1.3",
|
2020-04-01 08:09:57 +00:00
|
|
|
"unescape-js": "^1.1.4",
|
2020-05-20 11:30:53 +00:00
|
|
|
"url-search-params-polyfill": "^8.0.0",
|
2021-04-28 13:07:35 +00:00
|
|
|
"worker-loader": "^3.0.2",
|
2021-04-29 09:20:43 +00:00
|
|
|
"zipcelx": "^1.6.2"
|
2019-01-21 15:11:10 +00:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2021-08-24 12:14:23 +00:00
|
|
|
"analyze": "yarn cra-bundle-analyzer",
|
2021-07-05 05:49:43 +00:00
|
|
|
"start": "BROWSER=none EXTEND_ESLINT=true REACT_APP_ENVIRONMENT=DEVELOPMENT REACT_APP_CLIENT_LOG_LEVEL=debug HOST=dev.appsmith.com craco start",
|
2020-03-10 09:38:12 +00:00
|
|
|
"build": "./build.sh",
|
2020-04-15 11:22:15 +00:00
|
|
|
"build-local": "craco --max-old-space-size=4096 build --config craco.build.config.js",
|
2020-10-21 04:25:32 +00:00
|
|
|
"build-staging": "REACT_APP_ENVIRONMENT=STAGING craco --max-old-space-size=4096 build --config craco.build.config.js",
|
2020-05-12 19:59:36 +00:00
|
|
|
"test": "CYPRESS_BASE_URL=https://dev.appsmith.com cypress/test.sh",
|
|
|
|
|
"test:ci": "CYPRESS_BASE_URL=https://dev.appsmith.com cypress/test.sh --env=ci",
|
2019-01-21 16:54:33 +00:00
|
|
|
"eject": "react-scripts eject",
|
2020-07-07 10:22:17 +00:00
|
|
|
"start-prod": "REACT_APP_ENVIRONMENT=PRODUCTION craco start",
|
2019-12-12 07:50:53 +00:00
|
|
|
"cytest": "REACT_APP_TESTING=TESTING REACT_APP_ENVIRONMENT=DEVELOPMENT craco start & ./node_modules/.bin/cypress open",
|
2021-03-21 06:32:47 +00:00
|
|
|
"test:unit": "$(npm bin)/jest -b --colors --no-cache --coverage --collectCoverage=true --coverageDirectory='../../' --coverageReporters='json-summary'",
|
2021-04-27 07:16:54 +00:00
|
|
|
"test:jest": "$(npm bin)/jest --watch",
|
2020-08-10 04:54:33 +00:00
|
|
|
"storybook": "start-storybook -p 9009 -s public",
|
2021-05-20 19:25:05 +00:00
|
|
|
"build-storybook": "build-storybook -s public",
|
2021-09-09 15:10:22 +00:00
|
|
|
"generate:widget": "plop --plopfile generators/index.js",
|
2021-05-20 19:25:05 +00:00
|
|
|
"postinstall": "patch-package"
|
2019-01-21 15:11:10 +00:00
|
|
|
},
|
Property Pane Controls
- Fixes #121, #122, #123, #124, #90, #46, #65, #100, #101, #68, #102
2019-10-24 05:24:45 +00:00
|
|
|
"resolution": {
|
2020-11-03 13:05:40 +00:00
|
|
|
"jest": "24.8.0"
|
2019-09-02 07:09:29 +00:00
|
|
|
},
|
2019-01-21 15:11:10 +00:00
|
|
|
"eslintConfig": {
|
2020-11-03 13:05:40 +00:00
|
|
|
"extends": "react-app",
|
|
|
|
|
"parser": "@typescript-eslint/parser"
|
2019-01-21 15:11:10 +00:00
|
|
|
},
|
|
|
|
|
"browserslist": [
|
|
|
|
|
">0.2%",
|
|
|
|
|
"not dead",
|
|
|
|
|
"not ie <= 11",
|
|
|
|
|
"not op_mini all"
|
2019-02-10 13:06:05 +00:00
|
|
|
],
|
|
|
|
|
"devDependencies": {
|
2019-12-05 03:16:00 +00:00
|
|
|
"@babel/core": "^7.7.4",
|
2020-08-10 04:54:33 +00:00
|
|
|
"@storybook/addon-actions": "^5.3.19",
|
|
|
|
|
"@storybook/addon-backgrounds": "^5.3.19",
|
|
|
|
|
"@storybook/addon-contexts": "^5.3.19",
|
|
|
|
|
"@storybook/addon-docs": "^5.3.19",
|
|
|
|
|
"@storybook/addon-knobs": "^5.3.19",
|
|
|
|
|
"@storybook/addon-links": "^5.3.19",
|
|
|
|
|
"@storybook/addon-notes": "^5.3.19",
|
|
|
|
|
"@storybook/addons": "^5.3.19",
|
|
|
|
|
"@storybook/preset-create-react-app": "^3.1.4",
|
|
|
|
|
"@storybook/react": "^5.3.19",
|
2020-10-06 06:36:57 +00:00
|
|
|
"@testing-library/jest-dom": "^5.11.4",
|
2021-04-23 05:43:13 +00:00
|
|
|
"@testing-library/react": "^11.2.6",
|
2021-04-02 09:47:16 +00:00
|
|
|
"@testing-library/user-event": "^13.1.1",
|
2020-07-03 07:31:04 +00:00
|
|
|
"@types/codemirror": "^0.0.96",
|
2021-01-04 10:16:08 +00:00
|
|
|
"@types/deep-diff": "^1.0.0",
|
2020-08-28 12:07:37 +00:00
|
|
|
"@types/downloadjs": "^1.4.2",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
"@types/draft-js": "^0.11.1",
|
2021-05-20 12:03:08 +00:00
|
|
|
"@types/emoji-mart": "^3.0.4",
|
2019-11-14 09:28:51 +00:00
|
|
|
"@types/jest": "^24.0.22",
|
2021-08-29 03:50:16 +00:00
|
|
|
"@types/js-beautify": "^1.13.2",
|
2021-06-21 11:09:51 +00:00
|
|
|
"@types/jshint": "^2.12.0",
|
2021-03-08 08:24:12 +00:00
|
|
|
"@types/marked": "^1.2.2",
|
2021-07-05 11:45:21 +00:00
|
|
|
"@types/node-forge": "^0.10.0",
|
2020-01-24 09:54:40 +00:00
|
|
|
"@types/react-beautiful-dnd": "^11.0.4",
|
2021-07-08 12:02:08 +00:00
|
|
|
"@types/react-google-recaptcha": "^2.1.1",
|
2019-10-21 15:12:45 +00:00
|
|
|
"@types/react-select": "^3.0.5",
|
|
|
|
|
"@types/react-tabs": "^2.3.1",
|
2021-04-22 03:30:09 +00:00
|
|
|
"@types/react-test-renderer": "^17.0.1",
|
2021-03-11 04:55:37 +00:00
|
|
|
"@types/react-window": "^1.8.2",
|
2019-10-21 15:12:45 +00:00
|
|
|
"@types/redux-form": "^8.1.9",
|
2020-10-06 06:36:57 +00:00
|
|
|
"@types/redux-mock-store": "^1.0.2",
|
2021-05-20 12:03:08 +00:00
|
|
|
"@types/resize-observer-browser": "^0.1.5",
|
2020-08-10 04:54:33 +00:00
|
|
|
"@types/styled-system": "^5.1.9",
|
2020-05-20 11:30:53 +00:00
|
|
|
"@types/tern": "0.22.0",
|
2020-01-17 09:28:26 +00:00
|
|
|
"@types/toposort": "^2.0.3",
|
2021-04-23 05:43:13 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.15.0",
|
|
|
|
|
"@typescript-eslint/parser": "^4.15.0",
|
2020-06-08 09:00:58 +00:00
|
|
|
"babel-plugin-styled-components": "^1.10.7",
|
2021-08-24 12:14:23 +00:00
|
|
|
"cra-bundle-analyzer": "^0.1.0",
|
2020-06-22 13:46:19 +00:00
|
|
|
"craco-babel-loader": "^0.1.4",
|
2021-08-25 14:01:04 +00:00
|
|
|
"cypress": "7.6.0",
|
2020-12-03 05:32:50 +00:00
|
|
|
"cypress-file-upload": "^4.1.1",
|
2020-03-10 09:38:12 +00:00
|
|
|
"cypress-multi-reporters": "^1.2.4",
|
2020-04-02 04:47:48 +00:00
|
|
|
"cypress-xpath": "^1.4.0",
|
2019-09-05 17:47:50 +00:00
|
|
|
"dotenv": "^8.1.0",
|
2020-11-03 13:05:40 +00:00
|
|
|
"eslint": "^7.11.0",
|
2020-10-12 13:06:05 +00:00
|
|
|
"eslint-config-prettier": "^6.12.0",
|
2019-09-09 08:23:53 +00:00
|
|
|
"eslint-config-react": "^1.1.7",
|
2020-12-17 12:13:33 +00:00
|
|
|
"eslint-plugin-cypress": "^2.11.2",
|
2020-10-12 13:06:05 +00:00
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
|
|
|
"eslint-plugin-react": "^7.21.3",
|
2019-12-23 12:16:33 +00:00
|
|
|
"eslint-plugin-react-hooks": "^2.3.0",
|
2021-05-04 14:15:29 +00:00
|
|
|
"eslint-plugin-sort-destructure-keys": "^1.3.5",
|
2021-04-27 07:16:54 +00:00
|
|
|
"factory.ts": "^0.5.1",
|
2021-04-02 09:47:16 +00:00
|
|
|
"jest-canvas-mock": "^2.3.1",
|
2020-03-10 09:38:12 +00:00
|
|
|
"mocha": "^7.1.0",
|
|
|
|
|
"mocha-junit-reporter": "^1.23.3",
|
|
|
|
|
"mochawesome": "^5.0.0",
|
|
|
|
|
"mochawesome-report-generator": "^4.1.0",
|
2021-04-02 09:47:16 +00:00
|
|
|
"msw": "^0.28.0",
|
2021-05-20 19:25:05 +00:00
|
|
|
"patch-package": "^6.4.7",
|
2021-09-09 15:10:22 +00:00
|
|
|
"plop": "^2.7.4",
|
2021-05-20 19:25:05 +00:00
|
|
|
"postinstall-postinstall": "^2.1.0",
|
2021-02-16 10:29:08 +00:00
|
|
|
"raw-loader": "^4.0.2",
|
2019-12-05 03:16:00 +00:00
|
|
|
"react-docgen-typescript-loader": "^3.6.0",
|
|
|
|
|
"react-is": "^16.12.0",
|
2019-11-14 09:28:51 +00:00
|
|
|
"react-test-renderer": "^16.11.0",
|
2019-09-18 10:19:50 +00:00
|
|
|
"redux-devtools": "^3.5.0",
|
2019-12-05 03:16:00 +00:00
|
|
|
"redux-devtools-extension": "^2.13.8",
|
2020-10-06 06:36:57 +00:00
|
|
|
"redux-mock-store": "^1.5.4",
|
2020-08-10 04:54:33 +00:00
|
|
|
"storybook-addon-designs": "^5.4.0",
|
2021-04-02 09:47:16 +00:00
|
|
|
"ts-jest": "^26.5.4",
|
2020-05-05 12:16:51 +00:00
|
|
|
"webpack-merge": "^4.2.2",
|
2020-05-20 11:30:53 +00:00
|
|
|
"workbox-webpack-plugin": "^5.1.2"
|
2019-09-13 11:59:45 +00:00
|
|
|
},
|
|
|
|
|
"husky": {
|
|
|
|
|
"hooks": {
|
2020-03-16 15:42:39 +00:00
|
|
|
"pre-commit": "lint-staged"
|
2019-09-13 11:59:45 +00:00
|
|
|
}
|
2019-02-10 13:06:05 +00:00
|
|
|
}
|
2020-10-21 04:25:32 +00:00
|
|
|
}
|