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-04-26 21:08:50 +00:00
|
|
|
"repository": "https://github.com/kong/insomnia",
|
2017-11-26 20:45:40 +00:00
|
|
|
"bugs": {
|
2019-12-17 17:16:08 +00:00
|
|
|
"url": "https://github.com/kong/insomnia"
|
2016-07-18 19:44:46 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2019-08-02 19:01:01 +00:00
|
|
|
"lint": "eslint \"**/*.js\" \"**/*.html\" \"**/*.json\"",
|
2020-04-26 20:33:39 +00:00
|
|
|
"lint:fix": "eslint \"**/*.js\" \"**/*.html\" \"**/*.json\" --fix",
|
2019-04-18 00:50:03 +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",
|
2019-08-02 19:01:01 +00:00
|
|
|
"test": "npm run lint && lerna run --stream --parallel test",
|
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",
|
|
|
|
"storybook-legacy-start": "npm run storybook --prefix packages/insomnia-app",
|
2018-06-25 17:42:50 +00:00
|
|
|
"format-code": "prettier --write \"**/*.js\""
|
2016-03-16 05:49:42 +00:00
|
|
|
},
|
2018-06-25 19:58:03 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-05-05 20:36:25 +00:00
|
|
|
"pre-commit": "pretty-quick --staged && npm run lint"
|
2018-06-25 19:58:03 +00:00
|
|
|
}
|
|
|
|
},
|
2016-03-16 05:49:42 +00:00
|
|
|
"devDependencies": {
|
2020-04-09 17:32:19 +00:00
|
|
|
"@babel/cli": "^7.8.4",
|
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-04-09 17:32:19 +00:00
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"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",
|
|
|
|
"eslint-plugin-promise": "^3.7.0",
|
2020-04-09 17:32:19 +00:00
|
|
|
"eslint-plugin-react": "^7.19.0",
|
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
|
|
"flow-bin": "^0.122.0",
|
2018-06-25 19:58:03 +00:00
|
|
|
"husky": "^1.0.0-rc.9",
|
2020-04-26 20:33:39 +00:00
|
|
|
"jest": "^25.3.0",
|
2019-12-12 21:06:21 +00:00
|
|
|
"lerna": "^3.19.0",
|
2019-04-18 00:50:03 +00:00
|
|
|
"prettier": "^1.16.4",
|
|
|
|
"pretty-quick": "^1.10.0",
|
|
|
|
"rimraf": "^2.6.3"
|
2020-04-03 23:50:50 +00:00
|
|
|
},
|
2020-04-07 18:00:57 +00:00
|
|
|
"dependencies": {}
|
2016-03-16 05:49:42 +00:00
|
|
|
}
|