2017-11-26 20:45:40 +00:00
|
|
|
{
|
|
|
|
"private": true,
|
2019-12-17 16:58:09 +00:00
|
|
|
"version": "2.1.2",
|
2017-11-26 23:04:47 +00:00
|
|
|
"name": "insomnia-app",
|
|
|
|
"app": {
|
|
|
|
"name": "insomnia",
|
2019-09-18 00:02:42 +00:00
|
|
|
"executableName": "insomnia",
|
|
|
|
"appId": "com.insomnia.app",
|
2017-11-26 23:04:47 +00:00
|
|
|
"productName": "Insomnia",
|
2017-11-26 23:22:09 +00:00
|
|
|
"longName": "Insomnia REST Client",
|
2019-09-18 00:02:42 +00:00
|
|
|
"synopsis": "A simple, beautiful, and free REST API client",
|
2019-12-17 17:16:08 +00:00
|
|
|
"icon": "https://github.com/kong/insomnia/blob/master/packages/insomnia-app/app/icons/icon.ico?raw=true",
|
2019-09-18 00:02:42 +00:00
|
|
|
"theme": "default",
|
2019-12-17 16:57:45 +00:00
|
|
|
"version": "7.0.6",
|
2019-09-18 00:02:42 +00:00
|
|
|
"main": "main.min.js",
|
|
|
|
"plugins": [
|
|
|
|
"insomnia-plugin-base64",
|
|
|
|
"insomnia-plugin-hash",
|
|
|
|
"insomnia-plugin-file",
|
|
|
|
"insomnia-plugin-now",
|
|
|
|
"insomnia-plugin-uuid",
|
|
|
|
"insomnia-plugin-prompt",
|
|
|
|
"insomnia-plugin-request",
|
|
|
|
"insomnia-plugin-response",
|
|
|
|
"insomnia-plugin-jsonpath",
|
|
|
|
"insomnia-plugin-cookie-jar",
|
|
|
|
"insomnia-plugin-core-themes"
|
|
|
|
]
|
2017-11-26 23:04:47 +00:00
|
|
|
},
|
2017-11-26 21:10:01 +00:00
|
|
|
"licence": "MIT",
|
2017-11-26 23:04:47 +00:00
|
|
|
"homepage": "https://insomnia.rest/",
|
|
|
|
"description": "Debug APIs like a human, not a robot",
|
|
|
|
"author": "Insomnia <support@insomnia.rest>",
|
|
|
|
"main": "app/main.min.js",
|
2019-04-18 00:50:03 +00:00
|
|
|
"appveyorCacheBreaker": 2,
|
2017-11-26 20:45:40 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-12-17 17:16:08 +00:00
|
|
|
"url": "https://github.com/kong/insomnia"
|
2017-11-26 20:45:40 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2019-08-02 19:01:01 +00:00
|
|
|
"test": "flow check && npm run test:jest",
|
2018-06-27 05:13:48 +00:00
|
|
|
"test:jest": "cross-env NODE_ENV=test jest --silent",
|
2017-11-26 20:45:40 +00:00
|
|
|
"test-appveyor": "npm run test -- --maxWorkers 1",
|
2017-11-30 13:07:47 +00:00
|
|
|
"start:electron": "cross-env NODE_ENV=development webpack --config ./webpack/webpack.config.electron.babel.js && electron .",
|
2017-11-26 20:45:40 +00:00
|
|
|
"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\"",
|
2019-11-26 17:22:21 +00:00
|
|
|
"storybook": "start-storybook --port 3222",
|
2017-11-26 20:45:40 +00:00
|
|
|
"build": "node ./scripts/build.js",
|
2018-07-12 18:47:21 +00:00
|
|
|
"package": "node ./scripts/package.js",
|
2019-10-09 20:31:42 +00:00
|
|
|
"release": "node ./scripts/release.js",
|
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"
|
2017-11-26 20:45:40 +00:00
|
|
|
},
|
|
|
|
"dev": {
|
|
|
|
"dev-server-port": 3333
|
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"setupFiles": [
|
|
|
|
"./__jest__/setup.js"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"\\.(css|less|png)$": "<rootDir>/__mocks__/dummy.js",
|
2019-04-18 00:50:03 +00:00
|
|
|
"^worker-loader!": "<rootDir>/__mocks__/dummy.js",
|
|
|
|
"react-dom": "@hot-loader/react-dom"
|
2017-11-26 20:45:40 +00:00
|
|
|
},
|
|
|
|
"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",
|
2018-10-20 02:11:58 +00:00
|
|
|
"classnames",
|
2017-11-26 20:45:40 +00:00
|
|
|
"codemirror",
|
|
|
|
"codemirror-graphql",
|
2018-05-23 06:39:01 +00:00
|
|
|
"fuzzysort",
|
2017-11-29 01:50:44 +00:00
|
|
|
"graphql",
|
2020-01-06 18:33:47 +00:00
|
|
|
"insomnia-ui",
|
2018-11-30 06:16:59 +00:00
|
|
|
"insomnia-cookies",
|
|
|
|
"insomnia-importers",
|
|
|
|
"insomnia-prettify",
|
|
|
|
"insomnia-url",
|
|
|
|
"insomnia-xpath",
|
2017-11-26 20:45:40 +00:00
|
|
|
"highlight.js",
|
2019-05-29 20:10:48 +00:00
|
|
|
"json-order",
|
2017-11-27 02:06:15 +00:00
|
|
|
"jwt-authentication",
|
|
|
|
"moment",
|
2017-11-27 15:52:35 +00:00
|
|
|
"nunjucks",
|
2017-11-26 20:45:40 +00:00
|
|
|
"pdfjs-dist",
|
|
|
|
"prop-types",
|
|
|
|
"react",
|
|
|
|
"react-dnd",
|
|
|
|
"react-dnd-html5-backend",
|
2019-04-18 00:50:03 +00:00
|
|
|
"@hot-loader/react-dom",
|
2017-11-26 20:45:40 +00:00
|
|
|
"react-redux",
|
2018-10-20 02:11:58 +00:00
|
|
|
"react-sortable-hoc",
|
2017-11-26 20:45:40 +00:00
|
|
|
"react-tabs",
|
|
|
|
"redux",
|
|
|
|
"redux-thunk",
|
|
|
|
"reselect",
|
|
|
|
"srp-js",
|
2018-10-20 02:11:58 +00:00
|
|
|
"vkbeautify",
|
|
|
|
"zprint-clj"
|
2017-11-26 20:45:40 +00:00
|
|
|
],
|
|
|
|
"dependencies": {
|
2019-04-18 00:50:03 +00:00
|
|
|
"@hot-loader/react-dom": "^16.8.6",
|
|
|
|
"autobind-decorator": "^2.4.0",
|
2019-11-27 15:52:20 +00:00
|
|
|
"aws4": "^1.9.0",
|
2017-11-26 20:45:40 +00:00
|
|
|
"classnames": "^2.2.5",
|
|
|
|
"clone": "^2.1.0",
|
2019-12-20 20:03:44 +00:00
|
|
|
"codemirror": "^5.50.0",
|
2019-11-27 15:52:20 +00:00
|
|
|
"codemirror-graphql": "^0.11.3",
|
2017-11-26 20:45:40 +00:00
|
|
|
"deep-equal": "^1.0.1",
|
2018-10-20 02:11:58 +00:00
|
|
|
"electron-context-menu": "^0.10.0",
|
2019-04-26 06:29:47 +00:00
|
|
|
"font-scanner": "^0.1.1",
|
2018-03-29 17:23:49 +00:00
|
|
|
"fs-extra": "^5.0.0",
|
2018-05-23 06:39:01 +00:00
|
|
|
"fuzzysort": "^1.1.1",
|
2019-11-27 15:52:20 +00:00
|
|
|
"graphql": "^14.5.8",
|
2017-11-26 20:45:40 +00:00
|
|
|
"hawk": "^6.0.2",
|
|
|
|
"highlight.js": "^9.12.0",
|
|
|
|
"hkdf": "^0.0.2",
|
|
|
|
"html-entities": "^1.2.0",
|
2019-05-07 15:48:03 +00:00
|
|
|
"httpsnippet": "^1.19.1",
|
2017-11-26 20:45:40 +00:00
|
|
|
"iconv-lite": "^0.4.15",
|
2019-12-17 16:58:09 +00:00
|
|
|
"insomnia-cookies": "^2.1.2",
|
|
|
|
"insomnia-importers": "^2.1.2",
|
|
|
|
"insomnia-libcurl": "^2.1.2",
|
|
|
|
"insomnia-plugin-base64": "^2.1.2",
|
|
|
|
"insomnia-plugin-cookie-jar": "^2.1.2",
|
|
|
|
"insomnia-plugin-core-themes": "^2.1.2",
|
|
|
|
"insomnia-plugin-file": "^2.1.2",
|
|
|
|
"insomnia-plugin-hash": "^2.1.2",
|
|
|
|
"insomnia-plugin-jsonpath": "^2.1.2",
|
|
|
|
"insomnia-plugin-now": "^2.1.2",
|
|
|
|
"insomnia-plugin-prompt": "^2.1.2",
|
|
|
|
"insomnia-plugin-request": "^2.1.2",
|
|
|
|
"insomnia-plugin-response": "^2.1.2",
|
|
|
|
"insomnia-plugin-uuid": "^2.1.2",
|
|
|
|
"insomnia-prettify": "^2.1.2",
|
2020-01-06 18:33:47 +00:00
|
|
|
"insomnia-ui": "^1.0.0",
|
2019-12-17 16:58:09 +00:00
|
|
|
"insomnia-url": "^2.1.2",
|
|
|
|
"insomnia-xpath": "^2.1.2",
|
2019-11-27 15:52:20 +00:00
|
|
|
"json-order": "^1.0.12",
|
2018-11-06 02:35:53 +00:00
|
|
|
"jsonlint": "^1.6.3",
|
2019-08-07 16:17:50 +00:00
|
|
|
"jsonpath": "^1.0.2",
|
2018-10-20 02:11:58 +00:00
|
|
|
"jwt-authentication": "^0.4.0",
|
2018-01-11 11:47:25 +00:00
|
|
|
"marked": "^0.3.9",
|
2018-04-20 23:06:16 +00:00
|
|
|
"mime-types": "^2.1.18",
|
2017-11-26 20:45:40 +00:00
|
|
|
"mkdirp": "^0.5.1",
|
2018-03-06 01:09:36 +00:00
|
|
|
"moment": "^2.21.0",
|
2018-10-20 02:11:58 +00:00
|
|
|
"multiparty": "^4.2.1",
|
2017-11-26 20:45:40 +00:00
|
|
|
"nedb": "^1.8.0",
|
2019-04-18 00:50:03 +00:00
|
|
|
"node-forge": "^0.8.2",
|
2019-11-27 15:52:20 +00:00
|
|
|
"nunjucks": "^3.2.0",
|
2017-11-26 20:45:40 +00:00
|
|
|
"oauth-1.0a": "^2.2.2",
|
2017-12-28 15:34:42 +00:00
|
|
|
"papaparse": "^4.3.6",
|
2019-11-27 15:52:20 +00:00
|
|
|
"pdfjs-dist": "^2.2.228",
|
2018-04-20 23:06:16 +00:00
|
|
|
"prop-types": "^15.6.1",
|
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",
|
2018-06-08 20:47:49 +00:00
|
|
|
"react-sortable-hoc": "^0.8.3",
|
2018-04-20 23:06:16 +00:00
|
|
|
"react-tabs": "^2.2.2",
|
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",
|
2017-11-26 20:45:40 +00:00
|
|
|
"tough-cookie": "^2.3.1",
|
|
|
|
"uuid": "^3.0.0",
|
|
|
|
"vkbeautify": "^0.99.1",
|
2018-09-30 19:25:44 +00:00
|
|
|
"whatwg-fetch": "^2.0.1",
|
2019-04-18 03:50:23 +00:00
|
|
|
"yaml": "^1.5.0",
|
2019-08-02 19:37:25 +00:00
|
|
|
"zprint-clj": "0.2.0"
|
2017-11-26 20:45:40 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-04-18 00:50:03 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.4.0",
|
2019-10-09 20:31:42 +00:00
|
|
|
"@octokit/rest": "^16.33.0",
|
2020-01-06 18:33:47 +00:00
|
|
|
"@storybook/addon-info": "^5.2.8",
|
2019-11-26 17:22:21 +00:00
|
|
|
"@storybook/react": "^5.2.6",
|
2017-11-26 20:45:40 +00:00
|
|
|
"concurrently": "^3.5.0",
|
|
|
|
"cross-env": "^2.0.0",
|
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-10-08 23:31:32 +00:00
|
|
|
"electron-builder": "^21.2.0",
|
|
|
|
"electron-builder-squirrel-windows": "^21.2.0",
|
|
|
|
"electron-notarize": "^0.1.1",
|
2019-11-22 16:04:22 +00:00
|
|
|
"electron-rebuild": "^1.8.8",
|
2019-10-09 20:31:42 +00:00
|
|
|
"fast-glob": "^3.1.0",
|
2019-04-18 00:50:03 +00:00
|
|
|
"file-loader": "^3.0.1",
|
2018-10-17 17:26:19 +00:00
|
|
|
"less": "^3.8.1",
|
2018-04-18 18:20:49 +00:00
|
|
|
"less-loader": "^4.1.0",
|
2017-11-26 20:45:40 +00:00
|
|
|
"ncp": "^2.0.0",
|
2019-04-18 00:50:03 +00:00
|
|
|
"react-hot-loader": "^4.8.3",
|
|
|
|
"style-loader": "^0.23.1",
|
|
|
|
"url-loader": "^1.1.2",
|
2018-10-20 02:11:58 +00:00
|
|
|
"webpack": "^4.20.2",
|
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",
|
2018-10-20 02:11:58 +00:00
|
|
|
"worker-loader": "^2.0.0"
|
2017-11-26 20:45:40 +00:00
|
|
|
}
|
|
|
|
}
|