2016-03-16 05:49:42 +00:00
|
|
|
{
|
2017-11-26 20:45:40 +00:00
|
|
|
"name": "insomnia",
|
2016-03-20 20:42:27 +00:00
|
|
|
"private": true,
|
2016-07-07 20:10:55 +00:00
|
|
|
"version": "1.0.0",
|
2021-05-12 12:31:07 +00:00
|
|
|
"author": "Kong <office@konghq.com>",
|
2020-08-10 23:46:07 +00:00
|
|
|
"description": "Insomnia is a cross-platform REST client, built on top of Electron.",
|
2021-04-22 20:21:22 +00:00
|
|
|
"license": "MIT",
|
2020-04-26 21:08:50 +00:00
|
|
|
"repository": "https://github.com/kong/insomnia",
|
2017-11-26 20:45:40 +00:00
|
|
|
"bugs": {
|
2020-08-10 23:46:07 +00:00
|
|
|
"url": "https://github.com/kong/insomnia/issues"
|
2016-07-18 19:44:46 +00:00
|
|
|
},
|
2020-08-10 23:46:07 +00:00
|
|
|
"homepage": "https://github.com/kong/insomnia#readme",
|
2023-06-29 16:02:02 +00:00
|
|
|
"engines": {
|
2023-07-04 20:55:47 +00:00
|
|
|
"node": ">=18.15 <20",
|
2023-06-29 16:02:02 +00:00
|
|
|
"npm": ">=8.19.0"
|
2023-01-05 13:17:34 +00:00
|
|
|
},
|
2016-07-18 19:44:46 +00:00
|
|
|
"scripts": {
|
2023-07-05 11:22:52 +00:00
|
|
|
"build": "lerna run build",
|
2021-05-26 00:31:39 +00:00
|
|
|
"lint": "lerna run lint --stream --no-bail",
|
2021-08-27 03:44:01 +00:00
|
|
|
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#**/node_modules\"",
|
2021-05-26 00:31:39 +00:00
|
|
|
"lint:fix": "lerna run lint:fix --stream --no-bail",
|
2023-01-05 13:17:34 +00:00
|
|
|
"bootstrap": " npx -y check-engine && npm install && lerna bootstrap && lerna run --stream bootstrap",
|
2022-03-10 11:37:17 +00:00
|
|
|
"version": "lerna version",
|
2023-07-05 11:22:52 +00:00
|
|
|
"clean": "lerna run clean --stream && lerna clean --yes && rimraf node_modules **/*.tsbuildinfo",
|
|
|
|
"test": "lerna run --stream test",
|
2022-08-15 18:15:30 +00:00
|
|
|
"inso-start": "npm start --prefix packages/insomnia-inso",
|
2022-04-20 17:42:19 +00:00
|
|
|
"inso-package": "npm run build:sr --prefix packages/insomnia && npm run package --prefix packages/insomnia-inso",
|
2021-10-12 21:23:25 +00:00
|
|
|
"inso-package:artifacts": "npm run artifacts --prefix packages/insomnia-inso",
|
2022-10-14 08:27:10 +00:00
|
|
|
"test:bundled-inso": "npm run bootstrap && npm run test:bundled-inso --prefix packages/insomnia-inso",
|
2022-04-20 17:42:19 +00:00
|
|
|
"watch:app": "npm run build:main.min.js --prefix packages/insomnia && npm run start:dev-server --prefix packages/insomnia",
|
|
|
|
"app-start": "npm start --prefix packages/insomnia",
|
|
|
|
"app-build": "npm run build --prefix packages/insomnia",
|
|
|
|
"app-package": "npm run build --prefix packages/insomnia && npm run package --prefix packages/insomnia",
|
|
|
|
"app-bump-version": "npm run bump-version --prefix packages/insomnia",
|
2022-10-11 08:56:12 +00:00
|
|
|
"test:smoke:dev": "npm run test:dev --prefix packages/insomnia-smoke-test -- --project=Smoke",
|
|
|
|
"test:smoke:build": "npm run test:build --prefix packages/insomnia-smoke-test -- --project=Smoke",
|
|
|
|
"test:smoke:package": "npm run test:package --prefix packages/insomnia-smoke-test -- --project=Smoke",
|
2021-06-24 15:22:19 +00:00
|
|
|
"test:smoke:cli": "npm run test:cli --prefix packages/insomnia-smoke-test",
|
2021-11-03 08:06:52 +00:00
|
|
|
"hard-reset": "npm run clean && npm run bootstrap && npm run app-start",
|
2022-03-30 12:45:16 +00:00
|
|
|
"type-check": "lerna run type-check",
|
2022-05-02 10:25:55 +00:00
|
|
|
"changelog-image": "esr ./scripts/changelog-image/changelog-image.ts",
|
2022-07-07 13:19:17 +00:00
|
|
|
"download-all-npm-plugins": "esr ./scripts/download-all-npm-plugins.ts",
|
2022-04-20 17:42:19 +00:00
|
|
|
"dev": "npm start --prefix packages/insomnia"
|
2020-05-14 22:54:07 +00:00
|
|
|
},
|
2016-03-16 05:49:42 +00:00
|
|
|
"devDependencies": {
|
2022-05-17 12:18:06 +00:00
|
|
|
"@jest/globals": "^28.1.0",
|
2022-06-15 03:41:19 +00:00
|
|
|
"@jest/types": "^28.1.0",
|
|
|
|
"@types/eslint": "^8.4.3",
|
2023-07-05 08:57:13 +00:00
|
|
|
"@types/node": "^20.3.3",
|
2022-03-30 12:45:16 +00:00
|
|
|
"@types/svgo": "^2.6.3",
|
2022-02-02 16:21:25 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
|
|
|
"@typescript-eslint/parser": "^5.10.2",
|
2023-07-05 08:57:13 +00:00
|
|
|
"esbuild": "^0.16.0",
|
2022-06-15 03:41:19 +00:00
|
|
|
"esbuild-runner": "^2.2.1",
|
2022-02-02 16:21:25 +00:00
|
|
|
"eslint": "^8.8.0",
|
2023-06-29 16:02:02 +00:00
|
|
|
"eslint-config-helpers": "^1.2.0",
|
2021-07-22 23:04:56 +00:00
|
|
|
"eslint-plugin-filenames": "^1.3.2",
|
2022-02-02 16:21:25 +00:00
|
|
|
"eslint-plugin-html": "^6.2.0",
|
|
|
|
"eslint-plugin-import": "^2.25.4",
|
|
|
|
"eslint-plugin-jest": "^26.0.0",
|
|
|
|
"eslint-plugin-json": "^3.1.0",
|
|
|
|
"eslint-plugin-react": "^7.28.0",
|
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2021-07-22 23:04:56 +00:00
|
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
2022-05-17 12:18:06 +00:00
|
|
|
"jest": "^28.1.0",
|
2023-07-05 11:22:52 +00:00
|
|
|
"lerna": "^6.6.2",
|
2021-08-27 03:44:01 +00:00
|
|
|
"markdownlint-cli2": "^0.2.0",
|
2021-05-12 06:35:00 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2022-03-30 12:45:16 +00:00
|
|
|
"svg-text-to-path": "^1.1.2",
|
|
|
|
"svgo": "^2.8.0",
|
2022-05-17 12:18:06 +00:00
|
|
|
"ts-jest": "^28.0.1",
|
2022-03-08 23:05:21 +00:00
|
|
|
"type-fest": "^2.12.0",
|
2022-02-08 20:19:22 +00:00
|
|
|
"typescript": "^4.5.5"
|
Sidebar code mirror interactions (#2433)
* Lifting path clicked up to sidebar root
* Abstracting out path click to story (and app)
* Adding click to scroll, updating sidebar components
* Scroll fix for sidebar
* Cleaning up log
* PR feedback
* PR Feedback, fix schemas & request body rendering
* PR feedback & cleanup
* Prop value checking, selection positioning
* Pulling remote import
* Styled components into insomnia-app, obj destructuring, typing
* Refactoring item path mapping
* Abstracting the mapping of specs for position, bumping down styled components version.
* Directly passing ... rest args initial work
* Pulling logs, removing array concatenation
* Pulling click handler out of render method
* Rolling position mapping into scroll positining method
* Opening up type, could be number/string/array
* Update package-lock.json
* Grabbing height from window, typing API vars, checking path
* Creating scroll method dedicated to design mode
* Moving typing of spec related content to Props def.
* Type checking on sections, invalid section component
2020-08-03 17:57:12 +00:00
|
|
|
}
|
2021-08-25 19:52:08 +00:00
|
|
|
}
|