mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 14:19:58 +00:00
ccf577b9df
* bump required node version * bump node-libcurl * npm i * update npmrc * fix * proper fix of package-lock --------- Co-authored-by: Filipe Freire <livrofubia@gmail.com>
72 lines
2.7 KiB
JSON
72 lines
2.7 KiB
JSON
{
|
|
"name": "insomnia",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"author": "Kong <office@konghq.com>",
|
|
"description": "Insomnia is a cross-platform REST client, built on top of Electron.",
|
|
"license": "Apache-2.0",
|
|
"repository": "https://github.com/kong/insomnia",
|
|
"bugs": {
|
|
"url": "https://github.com/kong/insomnia/issues"
|
|
},
|
|
"homepage": "https://github.com/kong/insomnia#readme",
|
|
"engines": {
|
|
"node": ">=20.16.0 <22",
|
|
"npm": ">=10"
|
|
},
|
|
"workspaces": [
|
|
"packages/insomnia-testing",
|
|
"packages/insomnia",
|
|
"packages/insomnia-inso",
|
|
"packages/insomnia-smoke-test",
|
|
"packages/insomnia-sdk"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm start -w insomnia",
|
|
"lint": "npm run lint --workspaces --if-present",
|
|
"type-check": "npm run type-check --workspaces --if-present",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"lint:markdown": "npx markdownlint-cli2 \"**/*.md\" \"#**/node_modules\" \"#**/CHANGELOG.md\"",
|
|
"clean": "git clean -dfX",
|
|
"install-libcurl-electron": "node_modules/.bin/node-pre-gyp install --directory node_modules/@getinsomnia/node-libcurl --update-binary --runtime=electron --target=$target",
|
|
"inso-start": "npm start -w insomnia-inso",
|
|
"inso-package": "npm run build -w insomnia-inso && npm run package -w insomnia-inso",
|
|
"watch:app": "PLAYWRIGHT=1 npm run build:main.min.js -w insomnia && npm run start:dev-server -w insomnia",
|
|
"app-build": "npm run build -w insomnia",
|
|
"app-package": "npm run package -w insomnia",
|
|
"test:smoke:dev": "npm run test:dev -w insomnia-smoke-test -- --project=Smoke",
|
|
"test:smoke:build": "npm run test:build -w insomnia-smoke-test -- --project=Smoke",
|
|
"test:smoke:package": "npm run test:package -w insomnia-smoke-test -- --project=Smoke",
|
|
"changelog-image": "esr ./scripts/changelog-image/changelog-image.ts",
|
|
"download-all-npm-plugins": "esr ./scripts/download-all-npm-plugins.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.14",
|
|
"@types/eslint": "^8.56.7",
|
|
"@types/har-format": "^1.2.15",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/node": "^20.12.4",
|
|
"@typescript-eslint/eslint-plugin": "^7.5.0",
|
|
"@typescript-eslint/parser": "^7.5.0",
|
|
"esbuild": "^0.19.0",
|
|
"esbuild-runner": "^2.2.2",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-helpers": "^1.2.0",
|
|
"eslint-plugin-filenames": "^1.3.2",
|
|
"eslint-plugin-html": "^8.0.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-json": "^3.1.0",
|
|
"eslint-plugin-react": "^7.34.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
"tslib": "2.0.1",
|
|
"type-fest": "^4.15.0",
|
|
"typescript": "^5.4.4",
|
|
"vitest": "^2.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@types/decompress": "^4.2.7",
|
|
"decompress": "^4.2.1"
|
|
}
|
|
}
|