insomnia/package.json
Gregory Schier 5a92964db6
New insomnia-ui package with initial <NoticeTable/> component (#1869)
* Add insomnia-ui package with NoticeTable component and a few other examples

* Tweak icon placement and add insomnia-ui to insomnia-app package

* Add click handling and some extra styles to <NoticeTable/>

* New SvgIcon component and style tweaks

* Fix dependencies

* Fix button border

* Fix flow lint

* SvgIcon stories and lots of style updates

* Fix auto-formatting issue
2020-01-06 13:33:47 -05:00

63 lines
2.3 KiB
JSON

{
"name": "insomnia",
"private": true,
"version": "1.0.0",
"author": "Gregory Schier <greg.schier@konghq.com>",
"repository": "https://github.com/kong/insomnia",
"bugs": {
"url": "https://github.com/kong/insomnia"
},
"scripts": {
"lint": "eslint \"**/*.js\" \"**/*.html\" \"**/*.json\"",
"bootstrap": "npm install && lerna bootstrap && lerna run --parallel --stream bootstrap",
"publish": "lerna publish",
"clean": "lerna clean --yes && rimraf node_modules",
"test": "npm run lint && lerna run --stream --parallel test",
"app-start": "lerna run start --scope insomnia-app --stream --parallel --bail",
"app-build": "lerna run build --stream --parallel --bail",
"app-package": "lerna run package --stream --parallel --bail",
"app-release": "lerna run release --stream --parallel --bail",
"app-storybook": "lerna run storybook --scope insomnia-app --stream --parallel --bail",
"ui-storybook": "lerna run storybook --scope insomnia-ui --stream --parallel --bail",
"format-code": "prettier --write \"**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-inline-react-svg": "^1.1.0",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^4.19.1",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-flowtype": "^2.46.2",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.104.0",
"husky": "^1.0.0-rc.9",
"jest": "^24.7.1",
"lerna": "^3.19.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"rimraf": "^2.6.3"
}
}