UNPKG

@appello/services

Version:

Services package with api / graphql

122 lines (121 loc) 4.08 kB
{ "name": "@appello/services", "version": "5.0.0", "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": "git add . && 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" }, "peerDependencies": { "@appello/common": ">=4", "react": ">=17", "react-hook-form": "^7.66.1" }, "dependencies": { "@apollo/client": "3.14.0", "@reduxjs/toolkit": "2.10.1", "@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.13.2", "graphql": "16.9.0", "graphql-ws": "5.16.0" }, "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": "^29.0.0", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.3.0", "@testing-library/react": "^16.3.0", "@types/jest": "^30.0.0", "@types/react": "^19.2.6", "@typescript-eslint/eslint-plugin": "^7.13.0", "@typescript-eslint/parser": "^7.13.0", "commitizen": "^4.3.1", "devmoji": "^2.3.0", "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.7", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "lint-staged": "^15.2.10", "prettier": "^3.3.3", "react": "^19.2.0", "react-hook-form": "7.66.1", "rollup": "^4.53.3", "rollup-plugin-dts": "^6.2.3", "rollup-plugin-peer-deps-external": "^2.2.4", "ts-jest": "^29.4.5", "typescript": "^5.9.3" }, "lint-staged": { "src/**/*.{ts,tsx}": [ "npm run format:lint" ], "src/**/*.{ts,tsx,scss,json,css,js,graphql}": [ "npm run format:prettier" ] }, "files": [ "dist" ], "config": { "commitizen": { "path": "@commitlint/cz-commitlint" } }, "repository": { "type": "git", "url": "git+git@bitbucket.org:appello/frontend-services.git" }, "publishConfig": { "access": "public" } }