2020-01-25 00:57:57 +01:00
|
|
|
{
|
2020-04-14 12:05:45 +02:00
|
|
|
"name": "posthog",
|
|
|
|
"description": "",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/posthog/posthog.git"
|
|
|
|
},
|
2020-09-01 15:58:13 +02:00
|
|
|
"author": "PostHog Inc.",
|
2020-04-14 12:05:45 +02:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/posthog/posthog/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/posthog/posthog#readme",
|
2020-09-01 15:58:13 +02:00
|
|
|
"license": "MIT",
|
Plugin v8 (#1946)
* plugin progress
* blah
* add posthog config for plugins
* test gitignore
* new functionality for plugins
* support local plugin paths
* also ignore symlinks
* add positional argument
* fixes
* small fixes
* config polish
* config passed to posthog plugin
* ooooooops
* symlink fix
* cleanse dir before loading
* add cache to plugins
* pickle the goods
* unlink symlink
* pass full config
* unlink even if link points to nothing
* fix fix
* return none if value is empty
* plugin model
* plugins scene
* add config schema to plugins
* install plugins
* save descriptions
* show descriptions
* edit plugin
* save plugin config
* plugin modal
* uninstall plugins
* UX cleanup
* add "required" to plugin config
* open plugin modal after install
* split to subcomponents
* install custom plugins
* rework backend for model plugins
* Plugins on models
* simple reload pubsub
* fix apps not installed
* fix master/main issue
* fix reload command
* use the github api to get the default branch
* init plugins only if not running migrate/makemigrations
* store plugins zip archives in postgres
* tag plugins to specific versions
* save plugins in pluginConfig
* update pluginConfigs instead of adding new rows, remove from redux on uninstall
* remove debug
* run plugins from db by team
* reload when deleting
* remove debug
* smarter handling of dynamic plugins, support local plugins again
* improve typings, add some nicer warnings
* yarn lock file after merge
* squash migrations and add "locked" field to plugins
* error if folder not found in zip
* unregister plugins
* skip plugin init in test mode
* basic plugin test
* avoid mutating the same prop hash
* add pip tools to requirements.txt
* fix mypy, fix manage.py script error
* avoid plugins with mypy
* mypy fix
* abstract redis into plugin and add team_id to reload
* refactor and start work on syncing with posthog.json
* start testing plugin loading from json
* test plugin deletion
* test for syncing plugins from config
* complete and then test local json plugin sync
* test converting back and forward between an local and http path
* remove global plugin config from plugins array in posthog.json
* rename configSchema --> config_schema
* fix migration after merge
* rename from_cli to from_json
* mypy
* import pip after plugin loaded
* show error details
* raise exceptions visible to the frontend
* sync plugins on load
* access control to updating plugins from the web
* access control
* remove posthog.json from git
* test config schema from json
* if you can install via the web, you can also configure
* remove separate view access
* title as "Plugins" instead of "Installed Plugins" if we can't install ourselves and don't see the repository
* add self.team to plugin base class
* add instance_init method
* refactor into files
* sync global plugin config from json
* make global plugins work, add test
* global plugins in interface, make them take precedence over local plugins
* add comments to plugin base class
* reload/reset plugins before each test
* add error field to plugins
* add many plugin zips
* add many plugin zips, fix imports
* store errors on plugin object and test them
* fix types
* add null to error
* can be with any team ID in the test
* save problems running plugins in the plugin_config model
* try to create redis connection pool only once
* throw if no redis
* mypy
* get instance inside heartbeat and not top level
* try caching pubsub
* try pip install with -q
* install pip externally
* remove uuid and typing, now in stdlib
* more verbosity
* add pip back
* catch exceptions
* quiet and no input for pip
* check plugin reload every 10sec on new task
* fix type errors
* fix requirements error message
* use repository.json
* only load and reload plugins on workers
* rename task
* support local js plugins via py-mini-racer
* load js plugins from zip files
* extract jsplugin class and convert to syntax that uses global functions instead of initializing a class
* process events via grpc
* process events with the "posthog-plugins" queue to enable plugins
* remove old native python & mini racer plugin code
* default to false
* change env vars
* fix test
* remove grpc tools
* skip plugins in migrate.py scripts
* fix migration
* change output of settings debug banner to STDERR
* start posthog plugin server with worker
* try to fix python 3.7 test
* add fallback for the optional argument
* annoying CI test debug
* try to finally fix python 3.7 test
* here we go again
* move plugins under instance
* move plugins npm start into its own folder
* more console.log debugginf
* and again
* move plugins to separate script
* more prints
* fix test error
* docker config
* small fixes
* dckerfile fix
* reload plugins via pubsub, upgrade version
* plugins that support team setup code
* sync if made changes from config
* move plugins in menu
* require node 14 in heroku for better plugin support (namely ?. support)
* bump node version in dockerfiles
* update node versions for github actions
* update the concurrency for heroku workers
* update the concurrency for heroku workers (add link)
* Fix migrations after merge
* add ignore_result to process_event tasks
* fix: docker-preview run in parallel bug
* change order of commands
* remove separate plugins server conf script
* clarify intent
* revert castaway change
* add context to plugins/sync.py
* change everything to ValidationError
* delegate destroy to super
* no request to repository url if can't install
* make the if cleaner
* add clarifying line
* add clarifying line
* fix url field type
* rename get_redis_instance to get_client, move to posthog.redis
* remove duplicate validation
* flip if around
* simplify api logic
* simplify plugin_config api, fix global_plugin error
* remove unnecessary field rename
* mypy
* Plugins UI (#2090)
* base UI
* more UI
* load plugin image if available
* toggle enabled plugin
* plugin cards for available
* custom plugins
* change plugin configuration to drawer
* asks for confirmation when enabling or disabling a plugin
* loading state
* separation of concerns, leave new styles for separate PR
* general improvements
* remove button when installation is not available
* preemptively avoid merge conflict with #2114
* move papercups widget & hide bottom bar when drawer is open
* allow clicking the entire plugin card
* address all feedback
* move plugins under "project" menu
* Hide "configure" from globally enabled plugins
Co-authored-by: Marius Andra <marius.andra@gmail.com>
* add plugins opt in toggle to project/plugins
* choose pipeline based on team setting
* add "beta"
* plugin opt-in opt-out pages
* adjust install button
* remove tasks that are never called, remove PLUGINS_ENABLED global key
* fix responsive card display
* fix typo and drawer width
* skeleton fixes
* typo
* use "posthog-plugin-server" npm package
* "posthog-plugin-server" doc
* require the plugin server to be online before enabling plugins
* remove a few needeless "?." cases
* add hint for config_schema
* add hint for errors
* show plugin errors
* stop clicks if clicking on error
* show plugin errors
* loading indicators
* reload plugins when opting in/out
* nicer beta tag
* add frontend type
* fix mypy error
* fix test
* disable plugins if MULTI_TENANCY
* upgrade plugin-server version
* save event with plugin error
* upgrade plugin server
* squashed & optimized migrations
* remove unused import
* updates opt-in copy & hides tech details for cloud version
* fix cypress tests
* compare with None
* change plugins url and add redirect
* remove ellipsis
* use code snippet in plugin errors
* change github regex
* fix loading flickering on installing plugins
* add comment to plugin archive
* fix python style
* remove pip-tools (relic from the python plugin era)
* hard pin plugin server version
* remove copying of posthog.json from dev dockerfile (breaks if file doesn't exist, copied later anyway)
* update lockfile
Co-authored-by: James Greenhill <fuziontech@gmail.com>
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
2020-11-02 15:08:30 +01:00
|
|
|
"engines": {
|
2022-12-12 15:02:33 +01:00
|
|
|
"node": ">=18 <19"
|
Plugin v8 (#1946)
* plugin progress
* blah
* add posthog config for plugins
* test gitignore
* new functionality for plugins
* support local plugin paths
* also ignore symlinks
* add positional argument
* fixes
* small fixes
* config polish
* config passed to posthog plugin
* ooooooops
* symlink fix
* cleanse dir before loading
* add cache to plugins
* pickle the goods
* unlink symlink
* pass full config
* unlink even if link points to nothing
* fix fix
* return none if value is empty
* plugin model
* plugins scene
* add config schema to plugins
* install plugins
* save descriptions
* show descriptions
* edit plugin
* save plugin config
* plugin modal
* uninstall plugins
* UX cleanup
* add "required" to plugin config
* open plugin modal after install
* split to subcomponents
* install custom plugins
* rework backend for model plugins
* Plugins on models
* simple reload pubsub
* fix apps not installed
* fix master/main issue
* fix reload command
* use the github api to get the default branch
* init plugins only if not running migrate/makemigrations
* store plugins zip archives in postgres
* tag plugins to specific versions
* save plugins in pluginConfig
* update pluginConfigs instead of adding new rows, remove from redux on uninstall
* remove debug
* run plugins from db by team
* reload when deleting
* remove debug
* smarter handling of dynamic plugins, support local plugins again
* improve typings, add some nicer warnings
* yarn lock file after merge
* squash migrations and add "locked" field to plugins
* error if folder not found in zip
* unregister plugins
* skip plugin init in test mode
* basic plugin test
* avoid mutating the same prop hash
* add pip tools to requirements.txt
* fix mypy, fix manage.py script error
* avoid plugins with mypy
* mypy fix
* abstract redis into plugin and add team_id to reload
* refactor and start work on syncing with posthog.json
* start testing plugin loading from json
* test plugin deletion
* test for syncing plugins from config
* complete and then test local json plugin sync
* test converting back and forward between an local and http path
* remove global plugin config from plugins array in posthog.json
* rename configSchema --> config_schema
* fix migration after merge
* rename from_cli to from_json
* mypy
* import pip after plugin loaded
* show error details
* raise exceptions visible to the frontend
* sync plugins on load
* access control to updating plugins from the web
* access control
* remove posthog.json from git
* test config schema from json
* if you can install via the web, you can also configure
* remove separate view access
* title as "Plugins" instead of "Installed Plugins" if we can't install ourselves and don't see the repository
* add self.team to plugin base class
* add instance_init method
* refactor into files
* sync global plugin config from json
* make global plugins work, add test
* global plugins in interface, make them take precedence over local plugins
* add comments to plugin base class
* reload/reset plugins before each test
* add error field to plugins
* add many plugin zips
* add many plugin zips, fix imports
* store errors on plugin object and test them
* fix types
* add null to error
* can be with any team ID in the test
* save problems running plugins in the plugin_config model
* try to create redis connection pool only once
* throw if no redis
* mypy
* get instance inside heartbeat and not top level
* try caching pubsub
* try pip install with -q
* install pip externally
* remove uuid and typing, now in stdlib
* more verbosity
* add pip back
* catch exceptions
* quiet and no input for pip
* check plugin reload every 10sec on new task
* fix type errors
* fix requirements error message
* use repository.json
* only load and reload plugins on workers
* rename task
* support local js plugins via py-mini-racer
* load js plugins from zip files
* extract jsplugin class and convert to syntax that uses global functions instead of initializing a class
* process events via grpc
* process events with the "posthog-plugins" queue to enable plugins
* remove old native python & mini racer plugin code
* default to false
* change env vars
* fix test
* remove grpc tools
* skip plugins in migrate.py scripts
* fix migration
* change output of settings debug banner to STDERR
* start posthog plugin server with worker
* try to fix python 3.7 test
* add fallback for the optional argument
* annoying CI test debug
* try to finally fix python 3.7 test
* here we go again
* move plugins under instance
* move plugins npm start into its own folder
* more console.log debugginf
* and again
* move plugins to separate script
* more prints
* fix test error
* docker config
* small fixes
* dckerfile fix
* reload plugins via pubsub, upgrade version
* plugins that support team setup code
* sync if made changes from config
* move plugins in menu
* require node 14 in heroku for better plugin support (namely ?. support)
* bump node version in dockerfiles
* update node versions for github actions
* update the concurrency for heroku workers
* update the concurrency for heroku workers (add link)
* Fix migrations after merge
* add ignore_result to process_event tasks
* fix: docker-preview run in parallel bug
* change order of commands
* remove separate plugins server conf script
* clarify intent
* revert castaway change
* add context to plugins/sync.py
* change everything to ValidationError
* delegate destroy to super
* no request to repository url if can't install
* make the if cleaner
* add clarifying line
* add clarifying line
* fix url field type
* rename get_redis_instance to get_client, move to posthog.redis
* remove duplicate validation
* flip if around
* simplify api logic
* simplify plugin_config api, fix global_plugin error
* remove unnecessary field rename
* mypy
* Plugins UI (#2090)
* base UI
* more UI
* load plugin image if available
* toggle enabled plugin
* plugin cards for available
* custom plugins
* change plugin configuration to drawer
* asks for confirmation when enabling or disabling a plugin
* loading state
* separation of concerns, leave new styles for separate PR
* general improvements
* remove button when installation is not available
* preemptively avoid merge conflict with #2114
* move papercups widget & hide bottom bar when drawer is open
* allow clicking the entire plugin card
* address all feedback
* move plugins under "project" menu
* Hide "configure" from globally enabled plugins
Co-authored-by: Marius Andra <marius.andra@gmail.com>
* add plugins opt in toggle to project/plugins
* choose pipeline based on team setting
* add "beta"
* plugin opt-in opt-out pages
* adjust install button
* remove tasks that are never called, remove PLUGINS_ENABLED global key
* fix responsive card display
* fix typo and drawer width
* skeleton fixes
* typo
* use "posthog-plugin-server" npm package
* "posthog-plugin-server" doc
* require the plugin server to be online before enabling plugins
* remove a few needeless "?." cases
* add hint for config_schema
* add hint for errors
* show plugin errors
* stop clicks if clicking on error
* show plugin errors
* loading indicators
* reload plugins when opting in/out
* nicer beta tag
* add frontend type
* fix mypy error
* fix test
* disable plugins if MULTI_TENANCY
* upgrade plugin-server version
* save event with plugin error
* upgrade plugin server
* squashed & optimized migrations
* remove unused import
* updates opt-in copy & hides tech details for cloud version
* fix cypress tests
* compare with None
* change plugins url and add redirect
* remove ellipsis
* use code snippet in plugin errors
* change github regex
* fix loading flickering on installing plugins
* add comment to plugin archive
* fix python style
* remove pip-tools (relic from the python plugin era)
* hard pin plugin server version
* remove copying of posthog.json from dev dockerfile (breaks if file doesn't exist, copied later anyway)
* update lockfile
Co-authored-by: James Greenhill <fuziontech@gmail.com>
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
2020-11-02 15:08:30 +01:00
|
|
|
},
|
2022-12-12 10:28:06 +01:00
|
|
|
"packageManager": "pnpm@7.14.2",
|
2020-04-14 12:05:45 +02:00
|
|
|
"scripts": {
|
2023-02-15 13:50:52 +01:00
|
|
|
"copy-scripts": "mkdir -p frontend/dist/ && ./bin/copy-posthog-js",
|
2023-01-27 15:51:35 +01:00
|
|
|
"test": "pnpm test:unit && pnpm test:visual-regression",
|
|
|
|
"test:unit": "jest --testPathPattern=frontend/",
|
2023-02-10 12:50:43 +01:00
|
|
|
"test:visual-regression": "docker compose -f docker-compose.playwright.yml run --rm -it --build playwright pnpm test:visual-regression:legacy:docker && pnpm test:visual-regression:stories:docker",
|
|
|
|
"test:visual-regression:legacy": "docker compose -f docker-compose.playwright.yml run --rm -it --build playwright pnpm test:visual-regression:legacy:docker",
|
|
|
|
"test:visual-regression:legacy:docker": "STORYBOOK_URL=http://host.docker.internal:6006 playwright test -u",
|
2023-02-24 20:33:39 +01:00
|
|
|
"test:visual-regression:legacy:ci:update": "playwright test -u",
|
|
|
|
"test:visual-regression:legacy:ci:verify": "playwright test",
|
2023-02-10 12:50:43 +01:00
|
|
|
"test:visual-regression:stories": "docker compose -f docker-compose.playwright.yml run --rm -it --build playwright pnpm test:visual-regression:stories:docker",
|
2023-03-08 18:06:32 +01:00
|
|
|
"test:visual-regression:stories:docker": "NODE_OPTIONS=--max-old-space-size=6144 test-storybook -u --no-index-json --browsers chromium firefox webkit --url http://host.docker.internal:6006",
|
2023-02-24 20:33:39 +01:00
|
|
|
"test:visual-regression:stories:ci:update": "test-storybook -u --no-index-json --maxWorkers=2",
|
|
|
|
"test:visual-regression:stories:ci:verify": "test-storybook --ci --no-index-json --maxWorkers=2",
|
2022-12-12 10:28:06 +01:00
|
|
|
"start": "concurrently -n ESBUILD,TYPEGEN -c yellow,green \"pnpm start-http\" \"pnpm run typegen:watch\"",
|
|
|
|
"start-http": "pnpm clean && pnpm copy-scripts && node frontend/build.mjs --dev",
|
|
|
|
"start-docker": "pnpm start-http --host 0.0.0.0",
|
2021-11-03 09:50:24 +01:00
|
|
|
"clean": "rm -rf frontend/dist && mkdir frontend/dist",
|
2022-12-12 10:28:06 +01:00
|
|
|
"build": "pnpm copy-scripts && pnpm build:esbuild",
|
2021-11-03 09:50:24 +01:00
|
|
|
"build:esbuild": "node frontend/build.mjs",
|
2023-01-27 15:30:28 +01:00
|
|
|
"schema:build": "pnpm run schema:build:json && pnpm run schema:build:python",
|
|
|
|
"schema:build:json": "ts-json-schema-generator -f tsconfig.json --path 'frontend/src/*.ts' --type 'QuerySchema' --no-type-check > frontend/src/queries/schema.json && prettier --write frontend/src/queries/schema.json",
|
2023-01-31 10:46:38 +01:00
|
|
|
"schema:build:python": "datamodel-codegen --collapse-root-models --disable-timestamp --use-subclass-enum --input frontend/src/queries/schema.json --input-file-type jsonschema --output posthog/schema.py && black posthog/schema.py",
|
2023-02-07 17:02:29 +01:00
|
|
|
"grammar:build": "cd posthog/hogql/grammar && antlr -Dlanguage=Python3 HogQLLexer.g4 && antlr -visitor -no-listener -Dlanguage=Python3 HogQLParser.g4",
|
2022-12-12 10:28:06 +01:00
|
|
|
"packages:build": "pnpm packages:build:apps-common && pnpm packages:build:lemon-ui",
|
|
|
|
"packages:build:apps-common": "cd frontend/@posthog/apps-common && pnpm i && pnpm build",
|
|
|
|
"packages:build:lemon-ui": "cd frontend/@posthog/lemon-ui && pnpm i && pnpm build",
|
|
|
|
"editor:update-tsd": "pnpm packages:build && node frontend/editor-update-tsd.mjs",
|
2021-11-03 09:50:24 +01:00
|
|
|
"prettier": "prettier --write \"./**/*.{js,mjs,ts,tsx,json,yaml,yml,css,scss}\"",
|
|
|
|
"prettier:check": "prettier --check \"./**/*.{js,mjs,ts,tsx,json,yaml,yml,css,scss}\"",
|
2022-06-03 12:17:49 +02:00
|
|
|
"typescript:check": "tsc --noEmit && echo \"No errors reported by tsc.\"",
|
2020-08-24 23:02:13 +02:00
|
|
|
"eslint": "eslint frontend/src",
|
2021-01-22 15:36:30 +01:00
|
|
|
"typegen:write": "kea-typegen write",
|
|
|
|
"typegen:check": "kea-typegen check",
|
2023-01-30 12:22:00 +01:00
|
|
|
"typegen:watch": "kea-typegen watch --show-ts-errors > /dev/null",
|
2021-06-24 09:00:59 +02:00
|
|
|
"typegen:clean": "find frontend/src -type f -name '*Type.ts' -delete",
|
2021-02-03 13:03:22 +01:00
|
|
|
"format:python": "black . && isort .",
|
2022-12-12 10:28:06 +01:00
|
|
|
"format:js": "pnpm prettier && pnpm eslint --fix",
|
|
|
|
"format": "pnpm format:python && pnpm format:js",
|
2022-12-12 15:32:07 +01:00
|
|
|
"storybook": "export NODE_OPTIONS=--openssl-legacy-provider; start-storybook -p 6006",
|
2022-12-12 15:02:33 +01:00
|
|
|
"build-storybook": "export NODE_OPTIONS=--openssl-legacy-provider; build-storybook",
|
2022-03-21 13:15:50 +01:00
|
|
|
"dev:migrate:postgres": "export DEBUG=1 && source env/bin/activate && python manage.py migrate",
|
2022-05-04 04:36:58 +02:00
|
|
|
"dev:migrate:clickhouse": "export DEBUG=1 && source env/bin/activate && python manage.py migrate_clickhouse",
|
|
|
|
"prepare": "husky install"
|
2020-04-14 12:05:45 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-06-10 17:03:06 +02:00
|
|
|
"@ant-design/icons": "^4.7.0",
|
2023-02-23 14:16:34 +01:00
|
|
|
"@floating-ui/react": "^0.16.0",
|
2022-06-06 12:50:13 +02:00
|
|
|
"@lottiefiles/react-lottie-player": "^3.4.7",
|
2023-01-27 09:24:06 +01:00
|
|
|
"@medv/finder": "^2.1.0",
|
2021-06-01 13:19:38 +02:00
|
|
|
"@monaco-editor/react": "^4.1.3",
|
2022-08-08 13:48:49 +02:00
|
|
|
"@posthog/plugin-scaffold": "^1.3.2",
|
2021-07-19 21:00:59 +02:00
|
|
|
"@react-hook/size": "^2.1.2",
|
2023-01-19 11:28:01 +01:00
|
|
|
"@sentry/react": "7.22.0",
|
2022-12-12 10:28:06 +01:00
|
|
|
"@testing-library/dom": ">=7.21.4",
|
|
|
|
"@types/md5": "^2.3.0",
|
|
|
|
"@types/react-input-autosize": "^2.2.1",
|
|
|
|
"@types/react-textfit": "^1.1.0",
|
2023-02-23 14:16:34 +01:00
|
|
|
"@types/react-transition-group": "^4.4.5",
|
2022-12-12 10:28:06 +01:00
|
|
|
"@types/react-virtualized": "^9.21.14",
|
2021-11-24 20:02:38 +01:00
|
|
|
"antd": "^4.17.1",
|
2021-03-18 18:49:45 +01:00
|
|
|
"antd-dayjs-webpack-plugin": "^1.0.6",
|
2020-04-14 12:05:45 +02:00
|
|
|
"babel-preset-nano-react-app": "^0.1.0",
|
2022-09-20 15:12:17 +02:00
|
|
|
"chart.js": "^3.9.1",
|
|
|
|
"chartjs-adapter-dayjs-3": "^1.2.3",
|
2021-12-16 18:36:05 +01:00
|
|
|
"chartjs-plugin-crosshair": "^1.2.0",
|
2023-02-14 14:58:48 +01:00
|
|
|
"chartjs-plugin-datalabels": "^2.2.0",
|
2022-12-14 15:30:48 +01:00
|
|
|
"chokidar": "^3.5.3",
|
2021-07-01 04:27:36 +02:00
|
|
|
"clsx": "^1.1.1",
|
2021-07-20 00:28:57 +02:00
|
|
|
"core-js": "3.15.2",
|
2022-12-14 15:30:48 +01:00
|
|
|
"cors": "^2.8.5",
|
2023-02-28 14:32:13 +01:00
|
|
|
"d3": "^7.8.2",
|
2020-04-14 12:05:45 +02:00
|
|
|
"d3-sankey": "^0.12.3",
|
2021-11-24 20:02:38 +01:00
|
|
|
"dayjs": "^1.10.7",
|
2022-12-14 15:30:48 +01:00
|
|
|
"esbuild": "^0.14.54",
|
|
|
|
"esbuild-plugin-less": "^1.1.7",
|
|
|
|
"esbuild-sass-plugin": "^1.8.2",
|
2020-10-13 15:44:56 +02:00
|
|
|
"expr-eval": "^2.0.2",
|
2022-12-14 15:30:48 +01:00
|
|
|
"express": "^4.17.1",
|
2021-01-13 13:55:06 +01:00
|
|
|
"fast-deep-equal": "^3.1.3",
|
2022-12-14 15:30:48 +01:00
|
|
|
"fs-extra": "^10.0.0",
|
2020-10-13 15:44:56 +02:00
|
|
|
"fuse.js": "^6.4.1",
|
2022-12-14 15:30:48 +01:00
|
|
|
"husky": "^7.0.4",
|
2023-03-16 13:35:28 +01:00
|
|
|
"kea": "^3.1.5",
|
2022-11-17 11:36:47 +01:00
|
|
|
"kea-forms": "^3.0.3",
|
2022-05-20 18:14:58 +02:00
|
|
|
"kea-loaders": "^3.0.0",
|
2022-12-06 15:51:27 +01:00
|
|
|
"kea-localstorage": "^3.1.0",
|
2022-11-24 12:57:01 +01:00
|
|
|
"kea-router": "^3.1.3",
|
2022-05-20 18:14:58 +02:00
|
|
|
"kea-subscriptions": "^3.0.0",
|
2023-03-16 13:35:28 +01:00
|
|
|
"kea-test-utils": "^0.2.4",
|
2021-10-14 19:17:42 +02:00
|
|
|
"kea-waitfor": "^0.2.1",
|
2022-05-20 18:14:58 +02:00
|
|
|
"kea-window-values": "^3.0.0",
|
2021-05-14 13:45:09 +02:00
|
|
|
"md5": "^2.3.0",
|
2022-07-25 16:04:11 +02:00
|
|
|
"monaco-editor": "^0.23.0",
|
2023-03-23 11:04:31 +01:00
|
|
|
"posthog-js": "1.51.5",
|
2022-07-28 13:19:56 +02:00
|
|
|
"posthog-js-lite": "2.0.0-alpha5",
|
2022-12-14 15:30:48 +01:00
|
|
|
"prettier": "^2.3.1",
|
2020-04-14 12:05:45 +02:00
|
|
|
"prop-types": "^15.7.2",
|
2022-06-03 15:14:53 +02:00
|
|
|
"query-selector-shadow-dom": "^1.0.0",
|
2022-12-12 10:28:06 +01:00
|
|
|
"rc-field-form": "~1.21.0",
|
|
|
|
"rc-picker": "~2.5.17",
|
|
|
|
"rc-select": "~13.1.0-alpha.0",
|
|
|
|
"rc-table": "~7.19.0",
|
2021-04-14 14:53:56 +02:00
|
|
|
"rc-trigger": "^5.2.5",
|
2022-10-17 19:30:31 +02:00
|
|
|
"react": "^16.14.0",
|
|
|
|
"react-dom": "^16.14.0",
|
2020-08-17 15:40:11 +02:00
|
|
|
"react-draggable": "^4.2.0",
|
2021-10-14 16:51:27 +02:00
|
|
|
"react-grid-layout": "^1.3.0",
|
2022-01-22 01:27:30 +01:00
|
|
|
"react-input-autosize": "^3.0.0",
|
2022-09-16 16:09:14 +02:00
|
|
|
"react-json-view": "^1.21.3",
|
2021-03-12 14:54:29 +01:00
|
|
|
"react-markdown": "^5.0.3",
|
2022-08-11 09:57:24 +02:00
|
|
|
"react-modal": "^3.15.1",
|
2021-04-10 20:52:00 +02:00
|
|
|
"react-resizable": "^1.11.1",
|
2020-10-18 12:53:24 +02:00
|
|
|
"react-shadow": "^18.4.2",
|
2021-01-08 09:35:12 +01:00
|
|
|
"react-sortable-hoc": "^1.11.0",
|
2022-09-06 22:15:40 +02:00
|
|
|
"react-syntax-highlighter": "^15.5.0",
|
2022-01-22 01:27:30 +01:00
|
|
|
"react-textarea-autosize": "^8.3.3",
|
2022-08-10 10:17:41 +02:00
|
|
|
"react-textfit": "^1.1.1",
|
2022-03-09 12:36:57 +01:00
|
|
|
"react-toastify": "^8.2.0",
|
2023-02-23 14:16:34 +01:00
|
|
|
"react-transition-group": "^4.4.5",
|
2021-04-29 17:56:20 +02:00
|
|
|
"react-virtualized": "^9.22.3",
|
2022-07-25 16:04:11 +02:00
|
|
|
"require-from-string": "^2.0.2",
|
2021-04-27 01:56:34 +02:00
|
|
|
"resize-observer-polyfill": "^1.5.1",
|
2022-05-13 02:13:49 +02:00
|
|
|
"rrweb": "^1.1.3",
|
2020-04-14 12:05:45 +02:00
|
|
|
"sass": "^1.26.2",
|
2023-02-22 10:25:01 +01:00
|
|
|
"sql-formatter": "^12.1.2",
|
2023-02-24 20:33:39 +01:00
|
|
|
"use-debounce": "^9.0.3",
|
2021-11-19 17:50:43 +01:00
|
|
|
"use-resize-observer": "^8.0.0",
|
2022-08-01 11:47:30 +02:00
|
|
|
"wildcard-match": "^5.1.2",
|
2020-09-25 02:37:55 +02:00
|
|
|
"zxcvbn": "^4.4.2"
|
2020-04-14 12:05:45 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-16 10:24:59 +01:00
|
|
|
"@babel/core": "^7.17.10",
|
2022-05-09 11:34:28 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
2022-12-12 10:28:06 +01:00
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
2022-05-09 11:34:28 +02:00
|
|
|
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
|
|
|
|
"@babel/plugin-transform-react-jsx": "^7.17.3",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.17.10",
|
|
|
|
"@babel/preset-env": "^7.17.10",
|
2022-10-17 19:30:31 +02:00
|
|
|
"@babel/preset-react": "^7.17.10",
|
2023-03-16 13:35:28 +01:00
|
|
|
"@babel/preset-typescript": "^7.21.0",
|
2022-11-16 10:24:59 +01:00
|
|
|
"@babel/runtime": "^7.17.9",
|
2023-02-25 11:25:54 +01:00
|
|
|
"@cypress/webpack-preprocessor": "^5.17.0",
|
2022-10-17 19:30:31 +02:00
|
|
|
"@hot-loader/react-dom": "^16.14.0",
|
2023-01-27 15:51:35 +01:00
|
|
|
"@playwright/test": "1.29.2",
|
2023-01-19 11:28:01 +01:00
|
|
|
"@sentry/types": "7.22.0",
|
2023-03-14 12:37:56 +01:00
|
|
|
"@storybook/addon-a11y": "^6.5.16",
|
|
|
|
"@storybook/addon-actions": "^6.5.16",
|
|
|
|
"@storybook/addon-essentials": "^6.5.16",
|
|
|
|
"@storybook/addon-links": "^6.5.16",
|
|
|
|
"@storybook/addon-storysource": "^6.5.16",
|
|
|
|
"@storybook/addons": "^6.5.16",
|
|
|
|
"@storybook/api": "^6.5.16",
|
|
|
|
"@storybook/components": "^6.5.16",
|
|
|
|
"@storybook/core-events": "^6.5.16",
|
|
|
|
"@storybook/react": "^6.5.16",
|
|
|
|
"@storybook/source-loader": "^6.5.16",
|
|
|
|
"@storybook/test-runner": "^0.9.4",
|
|
|
|
"@storybook/theming": "^6.5.16",
|
2023-01-11 11:35:15 +01:00
|
|
|
"@sucrase/jest-plugin": "^3.0.0",
|
2022-11-16 10:24:59 +01:00
|
|
|
"@testing-library/dom": ">=7.21.4",
|
2022-03-21 14:18:47 +01:00
|
|
|
"@testing-library/jest-dom": "^5.16.2",
|
2021-10-20 16:12:32 +02:00
|
|
|
"@testing-library/react": "^12.1.2",
|
|
|
|
"@testing-library/user-event": "^13.5.0",
|
2021-12-16 18:36:05 +01:00
|
|
|
"@types/chartjs-plugin-crosshair": "^1.1.1",
|
2022-03-01 16:41:34 +01:00
|
|
|
"@types/clone": "^2.1.1",
|
2023-02-28 14:32:13 +01:00
|
|
|
"@types/d3": "^7.4.0",
|
|
|
|
"@types/d3-sankey": "^0.12.1",
|
2022-11-19 13:09:00 +01:00
|
|
|
"@types/jest": "^29.2.3",
|
2023-01-27 15:51:35 +01:00
|
|
|
"@types/jest-image-snapshot": "^6.1.0",
|
2022-11-16 10:24:59 +01:00
|
|
|
"@types/md5": "^2.3.0",
|
2022-12-12 10:28:06 +01:00
|
|
|
"@types/node": "^18.11.9",
|
2022-06-09 12:14:21 +02:00
|
|
|
"@types/pixelmatch": "^5.2.4",
|
|
|
|
"@types/pngjs": "^6.0.1",
|
2021-10-14 19:08:39 +02:00
|
|
|
"@types/query-selector-shadow-dom": "^1.0.0",
|
2021-01-13 00:46:59 +01:00
|
|
|
"@types/react": "^16.14.2",
|
2020-10-08 00:43:23 +02:00
|
|
|
"@types/react-dom": "^16.9.8",
|
2021-10-14 16:51:27 +02:00
|
|
|
"@types/react-grid-layout": "^1.1.2",
|
2022-11-16 10:24:59 +01:00
|
|
|
"@types/react-input-autosize": "^2.2.1",
|
2022-08-11 09:57:24 +02:00
|
|
|
"@types/react-modal": "^3.13.1",
|
2021-04-10 20:52:00 +02:00
|
|
|
"@types/react-resizable": "^1.7.2",
|
2020-10-14 10:42:06 +02:00
|
|
|
"@types/react-syntax-highlighter": "^11.0.4",
|
2022-11-16 10:24:59 +01:00
|
|
|
"@types/react-textfit": "^1.1.0",
|
|
|
|
"@types/react-transition-group": "^4.4.4",
|
|
|
|
"@types/react-virtualized": "^9.21.14",
|
2022-12-12 10:28:06 +01:00
|
|
|
"@types/testing-library__jest-dom": "^5.14.5",
|
2020-10-14 10:42:06 +02:00
|
|
|
"@types/zxcvbn": "^4.4.0",
|
2023-03-16 13:35:28 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
|
|
"@typescript-eslint/parser": "^5.54.1",
|
2022-06-10 17:03:06 +02:00
|
|
|
"autoprefixer": "^10.4.7",
|
2022-08-09 20:12:41 +02:00
|
|
|
"axe-core": "^4.4.3",
|
2020-04-14 12:05:45 +02:00
|
|
|
"babel-loader": "^8.0.6",
|
|
|
|
"babel-plugin-import": "^1.13.0",
|
2020-08-14 17:02:57 +02:00
|
|
|
"concurrently": "^5.3.0",
|
2020-08-17 15:40:11 +02:00
|
|
|
"css-loader": "^3.4.2",
|
2020-04-14 12:05:45 +02:00
|
|
|
"cssnano": "^4.1.10",
|
2023-02-25 11:25:54 +01:00
|
|
|
"cypress": "^12.6.0",
|
|
|
|
"cypress-axe": "^1.4.0",
|
|
|
|
"cypress-terminal-report": "^5.0.2",
|
2020-09-01 15:58:13 +02:00
|
|
|
"eslint": "^7.8.0",
|
2023-03-23 09:42:58 +01:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2022-08-09 17:48:43 +02:00
|
|
|
"eslint-plugin-cypress": "^2.12.1",
|
2022-05-25 16:38:44 +02:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2022-08-04 15:14:11 +02:00
|
|
|
"eslint-plugin-no-only-tests": "^3.0.0",
|
2020-07-08 09:45:23 +02:00
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2023-03-23 09:42:58 +01:00
|
|
|
"eslint-plugin-react": "^7.32.2",
|
2023-03-14 12:37:56 +01:00
|
|
|
"eslint-plugin-storybook": "^0.6.11",
|
2020-09-01 15:58:13 +02:00
|
|
|
"file-loader": "^6.1.0",
|
2021-02-09 16:28:01 +01:00
|
|
|
"givens": "^1.3.6",
|
2021-08-25 10:38:33 +02:00
|
|
|
"history": "^5.0.1",
|
2021-03-12 14:54:29 +01:00
|
|
|
"html-webpack-harddisk-plugin": "^1.0.2",
|
|
|
|
"html-webpack-plugin": "^4.5.2",
|
2022-11-19 13:09:00 +01:00
|
|
|
"jest": "^29.3.1",
|
2022-06-06 12:50:13 +02:00
|
|
|
"jest-canvas-mock": "^2.4.0",
|
2022-11-19 13:09:00 +01:00
|
|
|
"jest-environment-jsdom": "^29.3.1",
|
2023-01-27 15:51:35 +01:00
|
|
|
"jest-image-snapshot": "^6.1.0",
|
2023-03-16 13:35:28 +01:00
|
|
|
"kea-typegen": "^3.1.5",
|
2020-11-05 13:55:33 +01:00
|
|
|
"less": "^3.12.2",
|
|
|
|
"less-loader": "^7.0.2",
|
2020-09-01 15:58:13 +02:00
|
|
|
"lint-staged": "~10.2.13",
|
2022-12-07 11:40:56 +01:00
|
|
|
"mockdate": "^3.0.5",
|
2023-03-16 13:35:28 +01:00
|
|
|
"msw": "^0.49.0",
|
2021-11-03 09:50:24 +01:00
|
|
|
"path-browserify": "^1.0.1",
|
2022-05-27 14:31:17 +02:00
|
|
|
"pixelmatch": "^5.3.0",
|
2023-01-27 15:51:35 +01:00
|
|
|
"playwright-core": "1.29.2",
|
2022-05-27 14:31:17 +02:00
|
|
|
"pngjs": "^6.0.0",
|
2022-06-10 17:03:06 +02:00
|
|
|
"postcss": "^8.4.14",
|
|
|
|
"postcss-loader": "^4.3.0",
|
2021-06-01 13:19:38 +02:00
|
|
|
"raw-loader": "^4.0.2",
|
2020-09-01 15:58:13 +02:00
|
|
|
"sass-loader": "^10.0.1",
|
2023-03-14 12:37:56 +01:00
|
|
|
"storybook-addon-pseudo-states": "1.15.1",
|
2021-05-31 19:13:50 +02:00
|
|
|
"style-loader": "^2.0.0",
|
2023-01-11 11:35:15 +01:00
|
|
|
"sucrase": "^3.29.0",
|
2021-12-09 06:54:32 +01:00
|
|
|
"timekeeper": "^2.2.0",
|
2023-03-10 22:17:56 +01:00
|
|
|
"ts-json-schema-generator": "^1.2.0",
|
2022-12-12 10:28:06 +01:00
|
|
|
"ts-node": "^10.9.1",
|
2023-03-16 13:35:28 +01:00
|
|
|
"typescript": "~4.9.5",
|
2021-03-12 14:54:29 +01:00
|
|
|
"webpack": "^4.46.0",
|
|
|
|
"webpack-cli": "^4.5.0",
|
2021-07-24 01:58:29 +02:00
|
|
|
"whatwg-fetch": "^3.6.2"
|
2020-04-14 12:05:45 +02:00
|
|
|
},
|
2020-09-01 15:58:13 +02:00
|
|
|
"optionalDependencies": {
|
|
|
|
"fsevents": "^2.1.2"
|
|
|
|
},
|
2020-04-14 12:05:45 +02:00
|
|
|
"lint-staged": {
|
2023-01-27 15:51:35 +01:00
|
|
|
"*.{json,yaml,yml,css,scss}": "prettier --write",
|
|
|
|
"(!(plugin-server)/**).{js,jsx,mjs,ts,tsx}": [
|
|
|
|
"eslint -c .eslintrc.js --fix",
|
|
|
|
"prettier --write"
|
|
|
|
],
|
2022-12-20 17:04:28 +01:00
|
|
|
"(plugin-server/**).{js,jsx,mjs,ts,tsx}": [
|
|
|
|
"eslint -c plugin-server/.eslintrc.js --fix",
|
|
|
|
"prettier --write"
|
|
|
|
],
|
2023-02-07 17:02:29 +01:00
|
|
|
"!(posthog/hogql/grammar/*)*.{py,pyi}": [
|
2023-03-23 15:43:18 +01:00
|
|
|
"black",
|
|
|
|
"ruff"
|
2023-01-27 15:51:35 +01:00
|
|
|
],
|
|
|
|
"*.png": [
|
|
|
|
"optipng -clobber -o4 -strip all"
|
2020-07-28 22:19:33 +02:00
|
|
|
]
|
2021-07-13 10:01:04 +02:00
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"development": [
|
|
|
|
"last 2 chrome versions",
|
|
|
|
"last 2 firefox versions",
|
|
|
|
"last 2 edge versions"
|
|
|
|
],
|
|
|
|
"production": [
|
|
|
|
"defaults"
|
|
|
|
]
|
2021-11-03 09:50:24 +01:00
|
|
|
},
|
|
|
|
"browser": {
|
|
|
|
"path": "path-browserify"
|
2020-03-14 15:53:14 +01:00
|
|
|
}
|
2020-07-28 22:19:33 +02:00
|
|
|
}
|