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",
|
2020-08-10 23:46:07 +00:00
|
|
|
"description": "Insomnia is a cross-platform REST client, built on top of Electron.",
|
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",
|
2016-07-18 19:44:46 +00:00
|
|
|
"scripts": {
|
2020-06-18 17:48:09 +00:00
|
|
|
"lint": "eslint . --ext .js,.json",
|
2020-05-14 22:54:07 +00:00
|
|
|
"lint:fix": "npm run lint -- --fix",
|
2020-06-10 00:31:41 +00:00
|
|
|
"bootstrap": "npm install && lerna bootstrap && lerna run --parallel --stream bootstrap",
|
2017-11-30 16:43:30 +00:00
|
|
|
"publish": "lerna publish",
|
2018-10-20 02:11:58 +00:00
|
|
|
"clean": "lerna clean --yes && rimraf node_modules",
|
2020-05-14 22:54:07 +00:00
|
|
|
"typecheck": "lerna run --parallel --stream typecheck",
|
|
|
|
"test": "npm run lint && npm run typecheck && lerna run --stream --parallel test",
|
2020-07-02 19:42:42 +00:00
|
|
|
"test:pre-release": "npm run test --prefix packages/insomnia-app",
|
2020-07-01 23:28:05 +00:00
|
|
|
"inso-start": "npm start --prefix packages/insomnia-inso",
|
2020-04-26 20:33:39 +00:00
|
|
|
"app-start": "npm start --prefix packages/insomnia-app",
|
|
|
|
"app-build": "npm run build --prefix packages/insomnia-app",
|
|
|
|
"app-package": "npm run package --prefix packages/insomnia-app",
|
|
|
|
"app-release": "npm run release --prefix packages/insomnia-app",
|
|
|
|
"storybook-start": "npm run storybook --prefix packages/insomnia-components",
|
2020-08-12 21:12:31 +00:00
|
|
|
"storybook-legacy-start": "npm run storybook --prefix packages/insomnia-app",
|
2020-08-24 20:40:40 +00:00
|
|
|
"preinstall": "node ./scripts/check-version.js",
|
2021-02-02 23:19:22 +00:00
|
|
|
"app-build:smoke": "cross-env SMOKE_TEST=true npm run app-build",
|
|
|
|
"app-package:smoke": "cross-env SMOKE_TEST=true npm run app-package",
|
|
|
|
"test:smoke:build": "npm run test:build --prefix packages/insomnia-smoke-test",
|
|
|
|
"test:smoke:package": "npm run test:package --prefix packages/insomnia-smoke-test",
|
2020-12-08 00:03:06 +00:00
|
|
|
"test:smoke:cli": "npm run test:cli --prefix packages/insomnia-smoke-test"
|
2020-05-14 22:54:07 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2020-06-18 17:48:09 +00:00
|
|
|
"{packages,plugins}/**/*.{js,json}": [
|
2020-05-14 22:54:07 +00:00
|
|
|
"eslint --fix"
|
|
|
|
]
|
2016-03-16 05:49:42 +00:00
|
|
|
},
|
2018-06-25 19:58:03 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-05-14 22:54:07 +00:00
|
|
|
"pre-commit": "lint-staged"
|
2018-06-25 19:58:03 +00:00
|
|
|
}
|
|
|
|
},
|
2016-03-16 05:49:42 +00:00
|
|
|
"devDependencies": {
|
2020-07-28 05:18:26 +00:00
|
|
|
"@babel/cli": "^7.10.5",
|
2020-01-06 18:33:47 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
2019-04-18 00:50:03 +00:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.4.0",
|
|
|
|
"@babel/preset-env": "^7.4.3",
|
2020-04-09 17:32:19 +00:00
|
|
|
"@babel/preset-flow": "^7.9.0",
|
|
|
|
"@babel/preset-react": "^7.9.4",
|
|
|
|
"babel-eslint": "^10.1.0",
|
|
|
|
"babel-jest": "^25.3.0",
|
2019-04-18 00:50:03 +00:00
|
|
|
"babel-loader": "^8.0.5",
|
2020-01-06 18:33:47 +00:00
|
|
|
"babel-plugin-inline-react-svg": "^1.1.0",
|
|
|
|
"babel-plugin-styled-components": "^1.10.6",
|
2020-08-24 20:40:40 +00:00
|
|
|
"cross-env": "^7.0.2",
|
2020-06-18 17:48:09 +00:00
|
|
|
"eslint": "^7.2.0",
|
2020-05-14 22:54:07 +00:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
2020-04-09 17:32:19 +00:00
|
|
|
"eslint-config-semistandard": "^15.0.0",
|
|
|
|
"eslint-config-standard": "^14.1.1",
|
2019-08-02 19:01:01 +00:00
|
|
|
"eslint-plugin-filenames": "^1.2.0",
|
2020-04-09 17:32:19 +00:00
|
|
|
"eslint-plugin-flowtype": "^4.7.0",
|
|
|
|
"eslint-plugin-html": "^6.0.1",
|
|
|
|
"eslint-plugin-import": "^2.20.2",
|
2019-08-02 19:01:01 +00:00
|
|
|
"eslint-plugin-jest": "^21.15.1",
|
|
|
|
"eslint-plugin-json": "^1.2.0",
|
|
|
|
"eslint-plugin-node": "^6.0.1",
|
2020-05-14 22:54:07 +00:00
|
|
|
"eslint-plugin-prettier": "^3.1.3",
|
2019-08-02 19:01:01 +00:00
|
|
|
"eslint-plugin-promise": "^3.7.0",
|
2020-04-09 17:32:19 +00:00
|
|
|
"eslint-plugin-react": "^7.19.0",
|
2020-06-13 04:56:15 +00:00
|
|
|
"eslint-plugin-react-hooks": "^4.0.4",
|
2020-04-09 17:32:19 +00:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
|
|
"flow-bin": "^0.122.0",
|
2020-06-18 17:48:09 +00:00
|
|
|
"husky": "^4.2.5",
|
2020-04-26 20:33:39 +00:00
|
|
|
"jest": "^25.3.0",
|
2020-05-28 17:09:51 +00:00
|
|
|
"lerna": "^3.22.0",
|
2020-05-14 22:54:07 +00:00
|
|
|
"lint-staged": "^10.2.2",
|
2019-04-18 00:50:03 +00:00
|
|
|
"prettier": "^1.16.4",
|
|
|
|
"rimraf": "^2.6.3"
|
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
|
|
|
}
|
2016-03-16 05:49:42 +00:00
|
|
|
}
|