mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
72 lines
2.5 KiB
JSON
72 lines
2.5 KiB
JSON
{
|
|
"name": "insomnia",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"repository": "https://github.com/kong/insomnia",
|
|
"bugs": {
|
|
"url": "https://github.com/kong/insomnia"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint . --ext .js,.html,.json",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"bootstrap": "npm install && lerna bootstrap && lerna run --parallel --stream bootstrap",
|
|
"publish": "lerna publish",
|
|
"clean": "lerna clean --yes && rimraf node_modules",
|
|
"typecheck": "lerna run --parallel --stream typecheck",
|
|
"test": "npm run lint && npm run typecheck && lerna run --stream --parallel test",
|
|
"cli-start": "npm start --prefix packages/insomnia-cli",
|
|
"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"
|
|
},
|
|
"lint-staged": {
|
|
"{packages,plugins}/**/*.{js,html,json}": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@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.9.0",
|
|
"@babel/preset-react": "^7.9.4",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-jest": "^25.3.0",
|
|
"babel-loader": "^8.0.5",
|
|
"babel-plugin-inline-react-svg": "^1.1.0",
|
|
"babel-plugin-styled-components": "^1.10.6",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-config-semistandard": "^15.0.0",
|
|
"eslint-config-standard": "^14.1.1",
|
|
"eslint-plugin-filenames": "^1.2.0",
|
|
"eslint-plugin-flowtype": "^4.7.0",
|
|
"eslint-plugin-html": "^6.0.1",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-jest": "^21.15.1",
|
|
"eslint-plugin-json": "^1.2.0",
|
|
"eslint-plugin-node": "^6.0.1",
|
|
"eslint-plugin-prettier": "^3.1.3",
|
|
"eslint-plugin-promise": "^3.7.0",
|
|
"eslint-plugin-react": "^7.19.0",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"flow-bin": "^0.122.0",
|
|
"husky": "^1.0.0-rc.9",
|
|
"jest": "^25.3.0",
|
|
"lerna": "^3.22.0",
|
|
"lint-staged": "^10.2.2",
|
|
"prettier": "^1.16.4",
|
|
"rimraf": "^2.6.3"
|
|
},
|
|
"dependencies": {}
|
|
}
|