mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
Align with @opencollection/types 0.9.1 which renamed the OAuth1 field from signatureEncoding to signatureMethod. Update converters, filestore, and all YML test fixtures. Increase OAuth1 UI test timeouts from 30s to 60s.
110 lines
4.0 KiB
JSON
110 lines
4.0 KiB
JSON
{
|
|
"name": "usebruno",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/bruno-app",
|
|
"packages/bruno-electron",
|
|
"packages/bruno-cli",
|
|
"packages/bruno-common",
|
|
"packages/bruno-converters",
|
|
"packages/bruno-schema",
|
|
"packages/bruno-schema-types",
|
|
"packages/bruno-query",
|
|
"packages/bruno-js",
|
|
"packages/bruno-lang",
|
|
"packages/bruno-tests",
|
|
"packages/bruno-toml",
|
|
"packages/bruno-graphql-docs",
|
|
"packages/bruno-requests",
|
|
"packages/bruno-filestore"
|
|
],
|
|
"homepage": "https://usebruno.com",
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.3.2",
|
|
"@faker-js/faker": "^7.6.0",
|
|
"@jest/globals": "^29.2.0",
|
|
"@opencollection/types": "0.9.1",
|
|
"@playwright/test": "^1.51.1",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
|
|
"@storybook/builder-webpack5": "^10.1.10",
|
|
"@storybook/react": "^10.1.10",
|
|
"@storybook/react-webpack5": "^10.1.10",
|
|
"@stylistic/eslint-plugin": "^5.3.1",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/node": "^22.14.1",
|
|
"@typescript-eslint/parser": "^8.39.0",
|
|
"concurrently": "^8.2.2",
|
|
"cross-env": "10.1.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-diff": "^2.0.3",
|
|
"fs-extra": "^11.1.1",
|
|
"globals": "^16.1.0",
|
|
"husky": "^9.1.7",
|
|
"jest": "^29.2.0",
|
|
"lodash-es": "^4.17.21",
|
|
"nano-staged": "^0.8.0",
|
|
"playwright": "^1.51.1",
|
|
"pretty-quick": "^3.1.3",
|
|
"randomstring": "^1.2.2",
|
|
"rimraf": "^6.0.1",
|
|
"storybook": "^10.1.10",
|
|
"ts-jest": "^29.2.6"
|
|
},
|
|
"scripts": {
|
|
"setup": "node ./scripts/setup.js",
|
|
"watch:converters": "npm run watch --workspace=packages/bruno-converters",
|
|
"dev": "node ./scripts/dev.js",
|
|
"watch": "npm run dev:watch",
|
|
"dev:watch": "node ./scripts/dev-hot-reload.js",
|
|
"dev:web": "npm run dev --workspace=packages/bruno-app",
|
|
"build:web": "npm run build --workspace=packages/bruno-app",
|
|
"dev:electron": "npm run dev --workspace=packages/bruno-electron",
|
|
"dev:electron:debug": "npm run debug --workspace=packages/bruno-electron",
|
|
"storybook": "npm run storybook --workspace=packages/bruno-app",
|
|
"build:bruno-common": "npm run build --workspace=packages/bruno-common",
|
|
"build:bruno-requests": "npm run build --workspace=packages/bruno-requests",
|
|
"build:bruno-filestore": "npm run build --workspace=packages/bruno-filestore",
|
|
"build:bruno-converters": "npm run build --workspace=packages/bruno-converters",
|
|
"build:bruno-query": "npm run build --workspace=packages/bruno-query",
|
|
"build:graphql-docs": "npm run build --workspace=packages/bruno-graphql-docs",
|
|
"build:schema-types": "npm run build --workspace=packages/bruno-schema-types",
|
|
"build:electron": "node ./scripts/build-electron.js",
|
|
"build:electron:mac": "./scripts/build-electron.sh mac",
|
|
"build:electron:win": "./scripts/build-electron.sh win",
|
|
"build:electron:linux": "./scripts/build-electron.sh linux",
|
|
"build:electron:deb": "./scripts/build-electron.sh deb",
|
|
"build:electron:rpm": "./scripts/build-electron.sh rpm",
|
|
"build:electron:snap": "./scripts/build-electron.sh snap",
|
|
"watch:common": "npm run watch --workspace=packages/bruno-common",
|
|
"watch:requests": "npm run watch --workspace=packages/bruno-requests",
|
|
"test:codegen": "node playwright/codegen.ts",
|
|
"test:e2e": "playwright test --project=default",
|
|
"test:e2e:ssl": "playwright test --project=ssl",
|
|
"test:e2e:auth": "playwright test --project=auth",
|
|
"lint": "cross-env NODE_OPTIONS=\"--max_old_space_size=4096\" npx eslint",
|
|
"lint:fix": "cross-env NODE_OPTIONS=\"--max_old_space_size=4096\" npx eslint --fix",
|
|
"prepare": "husky"
|
|
},
|
|
"nano-staged": {
|
|
"*.{js,ts,jsx}": [
|
|
"npm run lint:fix"
|
|
]
|
|
},
|
|
"overrides": {
|
|
"axios":"1.13.6",
|
|
"rollup": "3.30.0",
|
|
"pbkdf2":"3.1.5",
|
|
"electron-store": {
|
|
"conf": {
|
|
"json-schema-typed": "8.0.1"
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"ajv": "^8.17.1",
|
|
"git-url-parse": "^14.1.0"
|
|
}
|
|
}
|