insomnia/packages/insomnia-app/package.json

206 lines
6.0 KiB
JSON
Raw Normal View History

{
"private": true,
"version": "1.1.2",
"name": "insomnia-app",
"app": {
"name": "insomnia",
"productName": "Insomnia",
2017-11-26 23:22:09 +00:00
"longName": "Insomnia REST Client",
2019-04-23 23:05:33 +00:00
"version": "6.4.1",
2017-11-26 23:22:09 +00:00
"main": "main.min.js"
},
2017-11-26 21:10:01 +00:00
"licence": "MIT",
"homepage": "https://insomnia.rest/",
"description": "Debug APIs like a human, not a robot",
"author": "Insomnia <support@insomnia.rest>",
"main": "app/main.min.js",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"appveyorCacheBreaker": 2,
"repository": {
"type": "git",
"url": "https://github.com/getinsomnia/insomnia"
},
"scripts": {
"lint": "eslint \"**/*.js\" \"**/*.html\" \"**/*.json\"",
"test": "flow check && npm run lint && npm run test:jest",
"test:jest": "cross-env NODE_ENV=test jest --silent",
"test-appveyor": "npm run test -- --maxWorkers 1",
"start:electron": "cross-env NODE_ENV=development webpack --config ./webpack/webpack.config.electron.babel.js && electron .",
"start:dev-server": "webpack-dev-server --config ./webpack/webpack.config.development.babel.js",
"start": "concurrently --kill-others \"npm run start:dev-server\" \"npm run start:electron\"",
"build": "node ./scripts/build.js",
2018-07-12 18:47:21 +00:00
"package": "node ./scripts/package.js",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"bootstrap": "rimraf node_modules/fsevents && rimraf node_modules/graphql-language-service-interface/dist/*.flow && electron-rebuild -f -w insomnia-libcurl"
},
"dev": {
"dev-server-port": 3333
},
"jest": {
"setupFiles": [
"./__jest__/setup.js"
],
"moduleNameMapper": {
"\\.(css|less|png)$": "<rootDir>/__mocks__/dummy.js",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"^worker-loader!": "<rootDir>/__mocks__/dummy.js",
"react-dom": "@hot-loader/react-dom"
},
"testMatch": [
"**/__tests__/**/*.test.js?(x)"
],
"rootDir": "app",
"verbose": false,
"resetMocks": true,
"resetModules": true,
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.js",
"!**/*.min.js",
"!**/main.development.js",
"!**/static/**",
"!**/ui/components/**",
"!**/__fixtures__/**",
"!**/__tests__/**",
"!**/__jest__/**",
"!**/__mocks__/**",
"!**/node_modules/**"
]
},
"packedDependencies": [
"autobind-decorator",
Update Electron and node-libcurl (#1215) * A bunch of things * Publish - insomnia-app@1.0.41 - insomnia-cookies@0.0.8 - insomnia-httpsnippet@1.16.13 - insomnia-importers@2.0.7 - insomnia-libcurl@0.0.17 - insomnia-url@0.1.4 - insomnia-xpath@1.0.5 - insomnia-plugin-cookie-jar@1.0.3 - insomnia-plugin-jsonpath@1.0.7 - insomnia-plugin-now@1.0.7 - insomnia-plugin-os@1.0.9 - insomnia-plugin-prompt@1.1.7 - insomnia-plugin-request@1.0.13 - insomnia-plugin-response@1.0.11 - insomnia-plugin-uuid@1.0.6 * Package deps * Remove fsevents again * Appveyor node verison * Remove unused dep * Try something * Try another thing * NPM audit * Yet again * Fix test * Fix test * Remove npm dep * Fix webview * Fix React sortable and bump version * Comment out broken test for now * Publish - insomnia-app@1.0.42 - insomnia-cookies@0.0.9 - insomnia-httpsnippet@1.16.14 - insomnia-importers@2.0.8 - insomnia-libcurl@0.0.18 - insomnia-xpath@1.0.6 - insomnia-plugin-cookie-jar@1.0.4 - insomnia-plugin-file@1.0.5 - insomnia-plugin-jsonpath@1.0.8 - insomnia-plugin-now@1.0.8 - insomnia-plugin-os@1.0.10 - insomnia-plugin-request@1.0.14 - insomnia-plugin-response@1.0.12 - insomnia-plugin-uuid@1.0.7 * Remove deprecated Electron Builder config options * Try some more * Publish - insomnia-app@1.0.43 - insomnia-libcurl@0.0.19 * Bump * Publish - insomnia-app@1.0.44 - insomnia-libcurl@0.0.20 * Hopefully fix windows builds * DEBUG on travis * Hopefully fix dependency issues * Undo package-lock copy * Debug * More debugging * Another check * Fix debug check * Try just build * Extra logging * Escape windows paths differently (Fixes #1217) * Try packing more deps * Publish - insomnia-app@1.0.45 - insomnia-cookies@0.0.10 - insomnia-httpsnippet@1.16.15 - insomnia-importers@2.0.9 - insomnia-libcurl@0.0.21 - insomnia-xpath@1.0.7 - insomnia-plugin-cookie-jar@1.0.5 - insomnia-plugin-jsonpath@1.0.9 - insomnia-plugin-now@1.0.9 - insomnia-plugin-os@1.0.11 - insomnia-plugin-request@1.0.15 - insomnia-plugin-response@1.0.13 - insomnia-plugin-uuid@1.0.8 * Adjust some deps * Zip build dir into release files * More debug info * Undo travis tar debug * Downgrade electron-builder to 20.19 * Downgrade electron-builder to last working version * Try electron-builder 20.20.4 * Change bundled deps * Add electron-builder-lib back
2018-10-20 02:11:58 +00:00
"classnames",
"codemirror",
"codemirror-graphql",
"fuzzysort",
"graphql",
2018-11-30 06:16:59 +00:00
"insomnia-cookies",
"insomnia-importers",
"insomnia-prettify",
"insomnia-url",
"insomnia-xpath",
"highlight.js",
2017-11-27 02:06:15 +00:00
"jwt-authentication",
"moment",
"nunjucks",
"pdfjs-dist",
"prop-types",
"react",
"react-dnd",
"react-dnd-html5-backend",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"@hot-loader/react-dom",
"react-redux",
Update Electron and node-libcurl (#1215) * A bunch of things * Publish - insomnia-app@1.0.41 - insomnia-cookies@0.0.8 - insomnia-httpsnippet@1.16.13 - insomnia-importers@2.0.7 - insomnia-libcurl@0.0.17 - insomnia-url@0.1.4 - insomnia-xpath@1.0.5 - insomnia-plugin-cookie-jar@1.0.3 - insomnia-plugin-jsonpath@1.0.7 - insomnia-plugin-now@1.0.7 - insomnia-plugin-os@1.0.9 - insomnia-plugin-prompt@1.1.7 - insomnia-plugin-request@1.0.13 - insomnia-plugin-response@1.0.11 - insomnia-plugin-uuid@1.0.6 * Package deps * Remove fsevents again * Appveyor node verison * Remove unused dep * Try something * Try another thing * NPM audit * Yet again * Fix test * Fix test * Remove npm dep * Fix webview * Fix React sortable and bump version * Comment out broken test for now * Publish - insomnia-app@1.0.42 - insomnia-cookies@0.0.9 - insomnia-httpsnippet@1.16.14 - insomnia-importers@2.0.8 - insomnia-libcurl@0.0.18 - insomnia-xpath@1.0.6 - insomnia-plugin-cookie-jar@1.0.4 - insomnia-plugin-file@1.0.5 - insomnia-plugin-jsonpath@1.0.8 - insomnia-plugin-now@1.0.8 - insomnia-plugin-os@1.0.10 - insomnia-plugin-request@1.0.14 - insomnia-plugin-response@1.0.12 - insomnia-plugin-uuid@1.0.7 * Remove deprecated Electron Builder config options * Try some more * Publish - insomnia-app@1.0.43 - insomnia-libcurl@0.0.19 * Bump * Publish - insomnia-app@1.0.44 - insomnia-libcurl@0.0.20 * Hopefully fix windows builds * DEBUG on travis * Hopefully fix dependency issues * Undo package-lock copy * Debug * More debugging * Another check * Fix debug check * Try just build * Extra logging * Escape windows paths differently (Fixes #1217) * Try packing more deps * Publish - insomnia-app@1.0.45 - insomnia-cookies@0.0.10 - insomnia-httpsnippet@1.16.15 - insomnia-importers@2.0.9 - insomnia-libcurl@0.0.21 - insomnia-xpath@1.0.7 - insomnia-plugin-cookie-jar@1.0.5 - insomnia-plugin-jsonpath@1.0.9 - insomnia-plugin-now@1.0.9 - insomnia-plugin-os@1.0.11 - insomnia-plugin-request@1.0.15 - insomnia-plugin-response@1.0.13 - insomnia-plugin-uuid@1.0.8 * Adjust some deps * Zip build dir into release files * More debug info * Undo travis tar debug * Downgrade electron-builder to 20.19 * Downgrade electron-builder to last working version * Try electron-builder 20.20.4 * Change bundled deps * Add electron-builder-lib back
2018-10-20 02:11:58 +00:00
"react-sortable-hoc",
"react-tabs",
"redux",
"redux-thunk",
"reselect",
"srp-js",
Update Electron and node-libcurl (#1215) * A bunch of things * Publish - insomnia-app@1.0.41 - insomnia-cookies@0.0.8 - insomnia-httpsnippet@1.16.13 - insomnia-importers@2.0.7 - insomnia-libcurl@0.0.17 - insomnia-url@0.1.4 - insomnia-xpath@1.0.5 - insomnia-plugin-cookie-jar@1.0.3 - insomnia-plugin-jsonpath@1.0.7 - insomnia-plugin-now@1.0.7 - insomnia-plugin-os@1.0.9 - insomnia-plugin-prompt@1.1.7 - insomnia-plugin-request@1.0.13 - insomnia-plugin-response@1.0.11 - insomnia-plugin-uuid@1.0.6 * Package deps * Remove fsevents again * Appveyor node verison * Remove unused dep * Try something * Try another thing * NPM audit * Yet again * Fix test * Fix test * Remove npm dep * Fix webview * Fix React sortable and bump version * Comment out broken test for now * Publish - insomnia-app@1.0.42 - insomnia-cookies@0.0.9 - insomnia-httpsnippet@1.16.14 - insomnia-importers@2.0.8 - insomnia-libcurl@0.0.18 - insomnia-xpath@1.0.6 - insomnia-plugin-cookie-jar@1.0.4 - insomnia-plugin-file@1.0.5 - insomnia-plugin-jsonpath@1.0.8 - insomnia-plugin-now@1.0.8 - insomnia-plugin-os@1.0.10 - insomnia-plugin-request@1.0.14 - insomnia-plugin-response@1.0.12 - insomnia-plugin-uuid@1.0.7 * Remove deprecated Electron Builder config options * Try some more * Publish - insomnia-app@1.0.43 - insomnia-libcurl@0.0.19 * Bump * Publish - insomnia-app@1.0.44 - insomnia-libcurl@0.0.20 * Hopefully fix windows builds * DEBUG on travis * Hopefully fix dependency issues * Undo package-lock copy * Debug * More debugging * Another check * Fix debug check * Try just build * Extra logging * Escape windows paths differently (Fixes #1217) * Try packing more deps * Publish - insomnia-app@1.0.45 - insomnia-cookies@0.0.10 - insomnia-httpsnippet@1.16.15 - insomnia-importers@2.0.9 - insomnia-libcurl@0.0.21 - insomnia-xpath@1.0.7 - insomnia-plugin-cookie-jar@1.0.5 - insomnia-plugin-jsonpath@1.0.9 - insomnia-plugin-now@1.0.9 - insomnia-plugin-os@1.0.11 - insomnia-plugin-request@1.0.15 - insomnia-plugin-response@1.0.13 - insomnia-plugin-uuid@1.0.8 * Adjust some deps * Zip build dir into release files * More debug info * Undo travis tar debug * Downgrade electron-builder to 20.19 * Downgrade electron-builder to last working version * Try electron-builder 20.20.4 * Change bundled deps * Add electron-builder-lib back
2018-10-20 02:11:58 +00:00
"vkbeautify",
"zprint-clj"
],
"dependencies": {
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"@hot-loader/react-dom": "^16.8.6",
"autobind-decorator": "^2.4.0",
2018-01-29 03:41:02 +00:00
"aws4": "^1.6.0",
"classnames": "^2.2.5",
"clone": "^2.1.0",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"codemirror": "^5.45.0",
"codemirror-graphql": "^0.8.3",
"deep-equal": "^1.0.1",
Update Electron and node-libcurl (#1215) * A bunch of things * Publish - insomnia-app@1.0.41 - insomnia-cookies@0.0.8 - insomnia-httpsnippet@1.16.13 - insomnia-importers@2.0.7 - insomnia-libcurl@0.0.17 - insomnia-url@0.1.4 - insomnia-xpath@1.0.5 - insomnia-plugin-cookie-jar@1.0.3 - insomnia-plugin-jsonpath@1.0.7 - insomnia-plugin-now@1.0.7 - insomnia-plugin-os@1.0.9 - insomnia-plugin-prompt@1.1.7 - insomnia-plugin-request@1.0.13 - insomnia-plugin-response@1.0.11 - insomnia-plugin-uuid@1.0.6 * Package deps * Remove fsevents again * Appveyor node verison * Remove unused dep * Try something * Try another thing * NPM audit * Yet again * Fix test * Fix test * Remove npm dep * Fix webview * Fix React sortable and bump version * Comment out broken test for now * Publish - insomnia-app@1.0.42 - insomnia-cookies@0.0.9 - insomnia-httpsnippet@1.16.14 - insomnia-importers@2.0.8 - insomnia-libcurl@0.0.18 - insomnia-xpath@1.0.6 - insomnia-plugin-cookie-jar@1.0.4 - insomnia-plugin-file@1.0.5 - insomnia-plugin-jsonpath@1.0.8 - insomnia-plugin-now@1.0.8 - insomnia-plugin-os@1.0.10 - insomnia-plugin-request@1.0.14 - insomnia-plugin-response@1.0.12 - insomnia-plugin-uuid@1.0.7 * Remove deprecated Electron Builder config options * Try some more * Publish - insomnia-app@1.0.43 - insomnia-libcurl@0.0.19 * Bump * Publish - insomnia-app@1.0.44 - insomnia-libcurl@0.0.20 * Hopefully fix windows builds * DEBUG on travis * Hopefully fix dependency issues * Undo package-lock copy * Debug * More debugging * Another check * Fix debug check * Try just build * Extra logging * Escape windows paths differently (Fixes #1217) * Try packing more deps * Publish - insomnia-app@1.0.45 - insomnia-cookies@0.0.10 - insomnia-httpsnippet@1.16.15 - insomnia-importers@2.0.9 - insomnia-libcurl@0.0.21 - insomnia-xpath@1.0.7 - insomnia-plugin-cookie-jar@1.0.5 - insomnia-plugin-jsonpath@1.0.9 - insomnia-plugin-now@1.0.9 - insomnia-plugin-os@1.0.11 - insomnia-plugin-request@1.0.15 - insomnia-plugin-response@1.0.13 - insomnia-plugin-uuid@1.0.8 * Adjust some deps * Zip build dir into release files * More debug info * Undo travis tar debug * Downgrade electron-builder to 20.19 * Downgrade electron-builder to last working version * Try electron-builder 20.20.4 * Change bundled deps * Add electron-builder-lib back
2018-10-20 02:11:58 +00:00
"electron-context-menu": "^0.10.0",
"electron-squirrel-startup": "^1.0.0",
"font-manager": "^0.3.0",
"fs-extra": "^5.0.0",
"fuzzysort": "^1.1.1",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"graphql": "^14.2.1",
"hawk": "^6.0.2",
"highlight.js": "^9.12.0",
"hkdf": "^0.0.2",
"html-entities": "^1.2.0",
"iconv-lite": "^0.4.15",
"insomnia-cookies": "^0.0.15",
"insomnia-httpsnippet": "^1.16.21",
"insomnia-importers": "^2.0.16",
"insomnia-libcurl": "^0.0.26",
"insomnia-plugin-base64": "^1.0.9",
"insomnia-plugin-cookie-jar": "^1.0.11",
"insomnia-plugin-core-themes": "^1.0.8",
"insomnia-plugin-file": "^1.0.10",
"insomnia-plugin-hash": "^1.0.10",
"insomnia-plugin-jsonpath": "^1.0.15",
"insomnia-plugin-now": "^1.0.14",
"insomnia-plugin-prompt": "^1.1.12",
"insomnia-plugin-request": "^1.0.21",
"insomnia-plugin-response": "^1.0.19",
"insomnia-plugin-uuid": "^1.0.13",
"insomnia-prettify": "^0.1.10",
"insomnia-url": "^0.1.9",
"insomnia-xpath": "^1.0.12",
2018-11-06 02:35:53 +00:00
"jsonlint": "^1.6.3",
"jsonpath": "^0.2.12",
Update Electron and node-libcurl (#1215) * A bunch of things * Publish - insomnia-app@1.0.41 - insomnia-cookies@0.0.8 - insomnia-httpsnippet@1.16.13 - insomnia-importers@2.0.7 - insomnia-libcurl@0.0.17 - insomnia-url@0.1.4 - insomnia-xpath@1.0.5 - insomnia-plugin-cookie-jar@1.0.3 - insomnia-plugin-jsonpath@1.0.7 - insomnia-plugin-now@1.0.7 - insomnia-plugin-os@1.0.9 - insomnia-plugin-prompt@1.1.7 - insomnia-plugin-request@1.0.13 - insomnia-plugin-response@1.0.11 - insomnia-plugin-uuid@1.0.6 * Package deps * Remove fsevents again * Appveyor node verison * Remove unused dep * Try something * Try another thing * NPM audit * Yet again * Fix test * Fix test * Remove npm dep * Fix webview * Fix React sortable and bump version * Comment out broken test for now * Publish - insomnia-app@1.0.42 - insomnia-cookies@0.0.9 - insomnia-httpsnippet@1.16.14 - insomnia-importers@2.0.8 - insomnia-libcurl@0.0.18 - insomnia-xpath@1.0.6 - insomnia-plugin-cookie-jar@1.0.4 - insomnia-plugin-file@1.0.5 - insomnia-plugin-jsonpath@1.0.8 - insomnia-plugin-now@1.0.8 - insomnia-plugin-os@1.0.10 - insomnia-plugin-request@1.0.14 - insomnia-plugin-response@1.0.12 - insomnia-plugin-uuid@1.0.7 * Remove deprecated Electron Builder config options * Try some more * Publish - insomnia-app@1.0.43 - insomnia-libcurl@0.0.19 * Bump * Publish - insomnia-app@1.0.44 - insomnia-libcurl@0.0.20 * Hopefully fix windows builds * DEBUG on travis * Hopefully fix dependency issues * Undo package-lock copy * Debug * More debugging * Another check * Fix debug check * Try just build * Extra logging * Escape windows paths differently (Fixes #1217) * Try packing more deps * Publish - insomnia-app@1.0.45 - insomnia-cookies@0.0.10 - insomnia-httpsnippet@1.16.15 - insomnia-importers@2.0.9 - insomnia-libcurl@0.0.21 - insomnia-xpath@1.0.7 - insomnia-plugin-cookie-jar@1.0.5 - insomnia-plugin-jsonpath@1.0.9 - insomnia-plugin-now@1.0.9 - insomnia-plugin-os@1.0.11 - insomnia-plugin-request@1.0.15 - insomnia-plugin-response@1.0.13 - insomnia-plugin-uuid@1.0.8 * Adjust some deps * Zip build dir into release files * More debug info * Undo travis tar debug * Downgrade electron-builder to 20.19 * Downgrade electron-builder to last working version * Try electron-builder 20.20.4 * Change bundled deps * Add electron-builder-lib back
2018-10-20 02:11:58 +00:00
"jwt-authentication": "^0.4.0",
"marked": "^0.3.9",
2018-04-20 23:06:16 +00:00
"mime-types": "^2.1.18",
"mkdirp": "^0.5.1",
2018-03-06 01:09:36 +00:00
"moment": "^2.21.0",
Update Electron and node-libcurl (#1215) * A bunch of things * Publish - insomnia-app@1.0.41 - insomnia-cookies@0.0.8 - insomnia-httpsnippet@1.16.13 - insomnia-importers@2.0.7 - insomnia-libcurl@0.0.17 - insomnia-url@0.1.4 - insomnia-xpath@1.0.5 - insomnia-plugin-cookie-jar@1.0.3 - insomnia-plugin-jsonpath@1.0.7 - insomnia-plugin-now@1.0.7 - insomnia-plugin-os@1.0.9 - insomnia-plugin-prompt@1.1.7 - insomnia-plugin-request@1.0.13 - insomnia-plugin-response@1.0.11 - insomnia-plugin-uuid@1.0.6 * Package deps * Remove fsevents again * Appveyor node verison * Remove unused dep * Try something * Try another thing * NPM audit * Yet again * Fix test * Fix test * Remove npm dep * Fix webview * Fix React sortable and bump version * Comment out broken test for now * Publish - insomnia-app@1.0.42 - insomnia-cookies@0.0.9 - insomnia-httpsnippet@1.16.14 - insomnia-importers@2.0.8 - insomnia-libcurl@0.0.18 - insomnia-xpath@1.0.6 - insomnia-plugin-cookie-jar@1.0.4 - insomnia-plugin-file@1.0.5 - insomnia-plugin-jsonpath@1.0.8 - insomnia-plugin-now@1.0.8 - insomnia-plugin-os@1.0.10 - insomnia-plugin-request@1.0.14 - insomnia-plugin-response@1.0.12 - insomnia-plugin-uuid@1.0.7 * Remove deprecated Electron Builder config options * Try some more * Publish - insomnia-app@1.0.43 - insomnia-libcurl@0.0.19 * Bump * Publish - insomnia-app@1.0.44 - insomnia-libcurl@0.0.20 * Hopefully fix windows builds * DEBUG on travis * Hopefully fix dependency issues * Undo package-lock copy * Debug * More debugging * Another check * Fix debug check * Try just build * Extra logging * Escape windows paths differently (Fixes #1217) * Try packing more deps * Publish - insomnia-app@1.0.45 - insomnia-cookies@0.0.10 - insomnia-httpsnippet@1.16.15 - insomnia-importers@2.0.9 - insomnia-libcurl@0.0.21 - insomnia-xpath@1.0.7 - insomnia-plugin-cookie-jar@1.0.5 - insomnia-plugin-jsonpath@1.0.9 - insomnia-plugin-now@1.0.9 - insomnia-plugin-os@1.0.11 - insomnia-plugin-request@1.0.15 - insomnia-plugin-response@1.0.13 - insomnia-plugin-uuid@1.0.8 * Adjust some deps * Zip build dir into release files * More debug info * Undo travis tar debug * Downgrade electron-builder to 20.19 * Downgrade electron-builder to last working version * Try electron-builder 20.20.4 * Change bundled deps * Add electron-builder-lib back
2018-10-20 02:11:58 +00:00
"multiparty": "^4.2.1",
"nedb": "^1.8.0",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"node-forge": "^0.8.2",
"nunjucks": "^3.0.0",
"oauth-1.0a": "^2.2.2",
2017-12-28 15:34:42 +00:00
"papaparse": "^4.3.6",
2018-04-20 23:06:16 +00:00
"pdfjs-dist": "^2.0.489",
"prop-types": "^15.6.1",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"react": "^16.8.6",
"react-dnd": "^7.4.5",
"react-dnd-html5-backend": "^7.4.4",
"react-redux": "^7.0.1",
"react-sortable-hoc": "^0.8.3",
2018-04-20 23:06:16 +00:00
"react-tabs": "^2.2.2",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
2018-04-26 11:52:16 +00:00
"srp-js": "^0.2.1",
"tough-cookie": "^2.3.1",
"uuid": "^3.0.0",
"vkbeautify": "^0.99.1",
"whatwg-fetch": "^2.0.1",
"yaml": "^1.5.0",
"zprint-clj": "^0.2.0"
},
"devDependencies": {
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"@babel/plugin-proposal-class-properties": "^7.4.0",
"concurrently": "^3.5.0",
"cross-env": "^2.0.0",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"css-loader": "^2.1.1",
2019-04-19 23:17:33 +00:00
"electron": "^3.0.4",
2019-04-19 21:47:39 +00:00
"electron-builder": "^20.20.4",
"electron-builder-lib": "^20.20.4",
"electron-builder-squirrel-windows": "^20.20.4",
2019-04-19 21:30:53 +00:00
"electron-rebuild": "^1.8.4",
2018-04-19 19:54:19 +00:00
"eslint": "^4.19.1",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-flowtype": "^2.46.2",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-json": "^1.2.0",
2018-04-19 19:54:19 +00:00
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"file-loader": "^3.0.1",
"less": "^3.8.1",
2018-04-18 18:20:49 +00:00
"less-loader": "^4.1.0",
"ncp": "^2.0.0",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"react-hot-loader": "^4.8.3",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
Update Electron and node-libcurl (#1215) * A bunch of things * Publish - insomnia-app@1.0.41 - insomnia-cookies@0.0.8 - insomnia-httpsnippet@1.16.13 - insomnia-importers@2.0.7 - insomnia-libcurl@0.0.17 - insomnia-url@0.1.4 - insomnia-xpath@1.0.5 - insomnia-plugin-cookie-jar@1.0.3 - insomnia-plugin-jsonpath@1.0.7 - insomnia-plugin-now@1.0.7 - insomnia-plugin-os@1.0.9 - insomnia-plugin-prompt@1.1.7 - insomnia-plugin-request@1.0.13 - insomnia-plugin-response@1.0.11 - insomnia-plugin-uuid@1.0.6 * Package deps * Remove fsevents again * Appveyor node verison * Remove unused dep * Try something * Try another thing * NPM audit * Yet again * Fix test * Fix test * Remove npm dep * Fix webview * Fix React sortable and bump version * Comment out broken test for now * Publish - insomnia-app@1.0.42 - insomnia-cookies@0.0.9 - insomnia-httpsnippet@1.16.14 - insomnia-importers@2.0.8 - insomnia-libcurl@0.0.18 - insomnia-xpath@1.0.6 - insomnia-plugin-cookie-jar@1.0.4 - insomnia-plugin-file@1.0.5 - insomnia-plugin-jsonpath@1.0.8 - insomnia-plugin-now@1.0.8 - insomnia-plugin-os@1.0.10 - insomnia-plugin-request@1.0.14 - insomnia-plugin-response@1.0.12 - insomnia-plugin-uuid@1.0.7 * Remove deprecated Electron Builder config options * Try some more * Publish - insomnia-app@1.0.43 - insomnia-libcurl@0.0.19 * Bump * Publish - insomnia-app@1.0.44 - insomnia-libcurl@0.0.20 * Hopefully fix windows builds * DEBUG on travis * Hopefully fix dependency issues * Undo package-lock copy * Debug * More debugging * Another check * Fix debug check * Try just build * Extra logging * Escape windows paths differently (Fixes #1217) * Try packing more deps * Publish - insomnia-app@1.0.45 - insomnia-cookies@0.0.10 - insomnia-httpsnippet@1.16.15 - insomnia-importers@2.0.9 - insomnia-libcurl@0.0.21 - insomnia-xpath@1.0.7 - insomnia-plugin-cookie-jar@1.0.5 - insomnia-plugin-jsonpath@1.0.9 - insomnia-plugin-now@1.0.9 - insomnia-plugin-os@1.0.11 - insomnia-plugin-request@1.0.15 - insomnia-plugin-response@1.0.13 - insomnia-plugin-uuid@1.0.8 * Adjust some deps * Zip build dir into release files * More debug info * Undo travis tar debug * Downgrade electron-builder to 20.19 * Downgrade electron-builder to last working version * Try electron-builder 20.20.4 * Change bundled deps * Add electron-builder-lib back
2018-10-20 02:11:58 +00:00
"webpack": "^4.20.2",
Version Control (beta) (#1439) * VCS proof of concept underway! * Stuff * Some things * Replace deprecated Electron makeSingleInstance * Rename `window` variables so not to be confused with window object * Don't unnecessarily update request when URL does not change * Regenerate package-lock * Fix tests + ESLint * Publish - insomnia-app@1.0.49 - insomnia-cookies@0.0.12 - insomnia-httpsnippet@1.16.18 - insomnia-importers@2.0.13 - insomnia-libcurl@0.0.23 - insomnia-prettify@0.1.7 - insomnia-url@0.1.6 - insomnia-xpath@1.0.9 - insomnia-plugin-base64@1.0.6 - insomnia-plugin-cookie-jar@1.0.8 - insomnia-plugin-core-themes@1.0.5 - insomnia-plugin-default-headers@1.1.9 - insomnia-plugin-file@1.0.7 - insomnia-plugin-hash@1.0.7 - insomnia-plugin-jsonpath@1.0.12 - insomnia-plugin-now@1.0.11 - insomnia-plugin-os@1.0.13 - insomnia-plugin-prompt@1.1.9 - insomnia-plugin-request@1.0.18 - insomnia-plugin-response@1.0.16 - insomnia-plugin-uuid@1.0.10 * Broken but w/e * Some tweaks * Big refactor. Create local snapshots and push done * POC merging and a lot of improvements * Lots of work done on initial UI/UX * Fix old tests * Atomic writes and size-based batches * Update StageEntry definition once again to be better * Factor out GraphQL query logic * Merge algorithm, history modal, other minor things * Fix test * Merge, checkout, revert w/ user changes now work * Force UI to refresh when switching branches changes active request * Rough draft pull() and some cleanup * E2EE stuff and some refactoring * Add ability to share project with team and fixed tests * VCS now created in root component and better remote project handling * Remove unused definition * Publish - insomnia-account@0.0.2 - insomnia-app@1.1.1 - insomnia-cookies@0.0.14 - insomnia-httpsnippet@1.16.20 - insomnia-importers@2.0.15 - insomnia-libcurl@0.0.25 - insomnia-prettify@0.1.9 - insomnia-sync@0.0.2 - insomnia-url@0.1.8 - insomnia-xpath@1.0.11 - insomnia-plugin-base64@1.0.8 - insomnia-plugin-cookie-jar@1.0.10 - insomnia-plugin-core-themes@1.0.7 - insomnia-plugin-file@1.0.9 - insomnia-plugin-hash@1.0.9 - insomnia-plugin-jsonpath@1.0.14 - insomnia-plugin-now@1.0.13 - insomnia-plugin-os@1.0.15 - insomnia-plugin-prompt@1.1.11 - insomnia-plugin-request@1.0.20 - insomnia-plugin-response@1.0.18 - insomnia-plugin-uuid@1.0.12 * Move some deps around * Fix Flow errors * Update package.json * Fix eslint errors * Fix tests * Update deps * bootstrap insomnia-sync * TRy fixing appveyor * Try something else * Bump lerna * try powershell * Try again * Fix imports * Fixed errors * sync types refactor * Show remote projects in workspace dropdown * Improved pulling of non-local workspaces * Loading indicators and some tweaks * Clean up sync staging modal * Some sync improvements: - No longer store stage - Upgrade Electron - Sync UI/UX improvements * Fix snyc tests * Upgraded deps and hot loader tweaks (it's broken for some reason) * Fix tests * Branches dialog, network refactoring, some tweaks * Fixed merging when other branch is empty * A bunch of small fixes from real testing * Fixed pull merge logic * Fix tests * Some bug fixes * A few small tweaks * Conflict resolution and other improvements * Fix tests * Add revert changes * Deal with duplicate projects per workspace * Some tweaks and accessibility improvements * Tooltip accessibility * Fix API endpoint * Fix tests * Remove jest dep from insomnia-importers
2019-04-18 00:50:03 +00:00
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
2018-04-18 18:20:49 +00:00
"webpack-target-electron-renderer": "^0.4.0",
Update Electron and node-libcurl (#1215) * A bunch of things * Publish - insomnia-app@1.0.41 - insomnia-cookies@0.0.8 - insomnia-httpsnippet@1.16.13 - insomnia-importers@2.0.7 - insomnia-libcurl@0.0.17 - insomnia-url@0.1.4 - insomnia-xpath@1.0.5 - insomnia-plugin-cookie-jar@1.0.3 - insomnia-plugin-jsonpath@1.0.7 - insomnia-plugin-now@1.0.7 - insomnia-plugin-os@1.0.9 - insomnia-plugin-prompt@1.1.7 - insomnia-plugin-request@1.0.13 - insomnia-plugin-response@1.0.11 - insomnia-plugin-uuid@1.0.6 * Package deps * Remove fsevents again * Appveyor node verison * Remove unused dep * Try something * Try another thing * NPM audit * Yet again * Fix test * Fix test * Remove npm dep * Fix webview * Fix React sortable and bump version * Comment out broken test for now * Publish - insomnia-app@1.0.42 - insomnia-cookies@0.0.9 - insomnia-httpsnippet@1.16.14 - insomnia-importers@2.0.8 - insomnia-libcurl@0.0.18 - insomnia-xpath@1.0.6 - insomnia-plugin-cookie-jar@1.0.4 - insomnia-plugin-file@1.0.5 - insomnia-plugin-jsonpath@1.0.8 - insomnia-plugin-now@1.0.8 - insomnia-plugin-os@1.0.10 - insomnia-plugin-request@1.0.14 - insomnia-plugin-response@1.0.12 - insomnia-plugin-uuid@1.0.7 * Remove deprecated Electron Builder config options * Try some more * Publish - insomnia-app@1.0.43 - insomnia-libcurl@0.0.19 * Bump * Publish - insomnia-app@1.0.44 - insomnia-libcurl@0.0.20 * Hopefully fix windows builds * DEBUG on travis * Hopefully fix dependency issues * Undo package-lock copy * Debug * More debugging * Another check * Fix debug check * Try just build * Extra logging * Escape windows paths differently (Fixes #1217) * Try packing more deps * Publish - insomnia-app@1.0.45 - insomnia-cookies@0.0.10 - insomnia-httpsnippet@1.16.15 - insomnia-importers@2.0.9 - insomnia-libcurl@0.0.21 - insomnia-xpath@1.0.7 - insomnia-plugin-cookie-jar@1.0.5 - insomnia-plugin-jsonpath@1.0.9 - insomnia-plugin-now@1.0.9 - insomnia-plugin-os@1.0.11 - insomnia-plugin-request@1.0.15 - insomnia-plugin-response@1.0.13 - insomnia-plugin-uuid@1.0.8 * Adjust some deps * Zip build dir into release files * More debug info * Undo travis tar debug * Downgrade electron-builder to 20.19 * Downgrade electron-builder to last working version * Try electron-builder 20.20.4 * Change bundled deps * Add electron-builder-lib back
2018-10-20 02:11:58 +00:00
"worker-loader": "^2.0.0"
}
}