UNPKG

@appello/services

Version:

Services package with api / graphql

125 lines (124 loc) 4.17 kB
{ "name": "@appello/services", "version": "4.0.1", "author": "Appello Software", "description": "Services package with api / graphql", "keywords": [ "appello", "api", "rtk", "redux-tollkit", "apollo-graphql", "@tanstack/react-query" ], "license": "ISC", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "clean": "rm -rf dist", "build": "tsc", "test": "jest --passWithNoTests", "test:watch": "jest --watch", "commit": "npx git-cz", "format:lint": "eslint --quiet 'src/**/*.{ts,tsx}'", "format:lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'", "format:prettier": "prettier --check 'src/**/*.{ts,tsx,scss,json,css,js,graphql}'", "format:prettier:fix": "prettier --write 'src/**/*.{ts,tsx,scss,json,css,js,graphql}'", "check-types": "tsc -p tsconfig.json --noEmit", "prepare-release": "npm run test && npx lint-staged && npm run build", "release:alpha": "npm run prepare-release && npm version prerelease --preid=alpha && npm publish --tag alpha && npm run after-release", "release:patch": "npm run prepare-release && npm version patch && npm publish && npm run after-release", "release:minor": "npm run prepare-release && npm version minor && npm publish && npm run after-release", "release:major": "npm run prepare-release && npm version major && npm publish && npm run after-release", "after-release": "git push && git push --tags && rm -rf dist", "prepare": "husky" }, "dependencies": { "@apollo/client": "3.13.8", "@appello/common": "3.4.4", "@reduxjs/toolkit": "2.2.8", "@tanstack/query-core": "5.83.0", "@tanstack/react-query": "5.83.0", "@types/apollo-upload-client": "18.0.0", "apollo-upload-client": "18.0.1", "axios": "1.11.0", "camelcase-keys": "9.1.3", "change-case": "5.4.4", "graphql": "16.9.0", "graphql-ws": "5.16.0", "react-hook-form": "7.53.0", "snakecase-keys": "8.0.1" }, "peerDependencies": { "@appello/common": "^3.4.4", "react": "^17 || ^18" }, "devDependencies": { "@appello/eslint-config": "latest", "@appello/prettier-config": "latest", "@appello/commitlint-config": "latest", "@commitlint/cli": "^19.5.0", "@commitlint/config-conventional": "^19.5.0", "@commitlint/cz-commitlint": "^19.5.0", "@rollup/plugin-commonjs": "^26.0.3", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", "@testing-library/react": "^16.0.1", "@types/jest": "^29.5.13", "@types/react": "^18.3.11", "@typescript-eslint/eslint-plugin": "^7.13.0", "@typescript-eslint/parser": "^7.13.0", "commitizen": "^4.3.1", "eslint": "^8.57.1", "eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb-typescript": "^18.0.0", "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-typescript": "^3.6.3", "eslint-plugin-css-modules": "^2.12.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsx-a11y": "^6.10.0", "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-react": "^7.37.1", "eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-simple-import-sort": "^12.1.1", "eslint-plugin-unused-imports": "^3.2.0", "husky": "^9.1.6", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "lint-staged": "^15.2.10", "prettier": "^3.3.3", "react": "^18.3.1", "react-dom": "^18.3.1", "rollup": "^4.24.0", "rollup-plugin-dts": "^6.1.1", "rollup-plugin-peer-deps-external": "^2.2.4", "ts-jest": "^29.2.5", "typescript": "^5.4.5" }, "files": [ "dist" ], "config": { "commitizen": { "path": "@commitlint/cz-commitlint" } }, "lint-staged": { "src/**/*.{ts,tsx}": [ "npm run format:lint" ], "src/**/*.{ts,tsx,scss,json,css,js,graphql}": [ "npm run format:prettier" ] }, "repository": { "type": "git", "url": "git+git@bitbucket.org:appello/frontend-services.git" }, "publishConfig": { "access": "public" } }