mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
51b9ef76e9
* Bump app version to 8.6.1 * feat(unit-tests): Unit test reordering (#7020) * re-orderable test suites * re-orderable tests * fix ts * Use db methods for sorting * sort suites and unit tests in inso * fix suite rename * Fixes https://github.com/Kong/insomnia/issues/7011 (#7012) * Fixes https://github.com/Kong/insomnia/issues/7009 (#7010) * chore: edit changelog process [INS-3456] (#7001) * fix(workspace): Add default name for when creating a workspace (#7046) * Add default name for when creating a design/collection * workspace update and creation * fix filter history keys not being valid selectors (#7040) * remove invalid wide css prop (#7041) * feat(environment): update environments icons (#7050) * update environments icons * fix workspace name * fix one line editor being scrollable (#7059) * change 8.0 to 8 (#7061) * Cleanup page containers and add hint container in the page (#7060) * feat(pane-tabs): Consistent styles for tabs (#7062) * response/request pane tab counts * tab dropdown colors * fix updates to db leading to errors in loader fetchers (#7033) * feat(command-palette): add button to open the command palette (#7064) * add button for quick search * update button styles in project * make it look good with gh stars * fix ts issue * changelog --------- Co-authored-by: Jack Kavanagh <3679927+jackkav@users.noreply.github.com> Co-authored-by: James Gatz <jamesgatzos@gmail.com> Co-authored-by: Jeroen Van den Berghe <vandenberghe.jeroen@gmail.com> Co-authored-by: Filipe Freire <livrofubia@gmail.com>
75 lines
3.1 KiB
JSON
75 lines
3.1 KiB
JSON
{
|
|
"name": "insomnia",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"author": "Kong <office@konghq.com>",
|
|
"description": "Insomnia is a cross-platform REST client, built on top of Electron.",
|
|
"license": "Apache-2.0",
|
|
"repository": "https://github.com/kong/insomnia",
|
|
"bugs": {
|
|
"url": "https://github.com/kong/insomnia/issues"
|
|
},
|
|
"homepage": "https://github.com/kong/insomnia#readme",
|
|
"engines": {
|
|
"node": ">=18.18.2 <20",
|
|
"npm": ">=8.19.0"
|
|
},
|
|
"workspaces": [
|
|
"packages/openapi-2-kong",
|
|
"packages/insomnia-testing",
|
|
"packages/insomnia-send-request",
|
|
"packages/insomnia",
|
|
"packages/insomnia-inso",
|
|
"packages/insomnia-smoke-test"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm start --workspace=packages/insomnia",
|
|
"lint": "npm run lint --workspaces --if-present",
|
|
"type-check": "npm run type-check --workspaces --if-present",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"lint:markdown": "npx markdownlint-cli2 \"**/*.md\" \"#**/node_modules\" \"#**/CHANGELOG.md\"",
|
|
"clean": "git clean -dfX",
|
|
"inso-start": "npm start --workspace=packages/insomnia-inso",
|
|
"inso-package": "npm run build:sr --workspace=packages/insomnia && npm run package --workspace=packages/insomnia-inso",
|
|
"inso-package:artifacts": "npm run artifacts --workspace=packages/insomnia-inso",
|
|
"test:bundled-inso": "npm run build --workspace=packages/insomnia-inso && npm run test:bundled-inso --workspace=packages/insomnia-inso",
|
|
"watch:app": "npm run build:main.min.js --workspace=packages/insomnia && npm run start:dev-server --workspace=packages/insomnia",
|
|
"app-build": "npm run build --workspace=packages/insomnia",
|
|
"app-package": "npm run package --workspace=packages/insomnia",
|
|
"test:smoke:dev": "npm run test:dev --workspace=packages/insomnia-smoke-test -- --project=Smoke",
|
|
"test:smoke:build": "npm run test:build --workspace=packages/insomnia-smoke-test -- --project=Smoke",
|
|
"test:smoke:package": "npm run test:package --workspace=packages/insomnia-smoke-test -- --project=Smoke",
|
|
"test:smoke:cli": "npm run test:cli --workspace=packages/insomnia-smoke-test",
|
|
"changelog-image": "esr ./scripts/changelog-image/changelog-image.ts",
|
|
"download-all-npm-plugins": "esr ./scripts/download-all-npm-plugins.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@jest/types": "^29.6.3",
|
|
"@types/chai": "^4.3.5",
|
|
"@types/eslint": "^8.4.3",
|
|
"@types/har-format": "^1.2.15",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^20.3.3",
|
|
"@typescript-eslint/eslint-plugin": "^6.3.0",
|
|
"@typescript-eslint/parser": "^6.3.0",
|
|
"esbuild": "^0.19.0",
|
|
"esbuild-runner": "^2.2.2",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-helpers": "^1.2.0",
|
|
"eslint-plugin-filenames": "^1.3.2",
|
|
"eslint-plugin-html": "^7.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jest": "^27.6.3",
|
|
"eslint-plugin-json": "^3.1.0",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.2",
|
|
"tslib": "2.0.1",
|
|
"type-fest": "^2.12.0",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|