saleor-apps-redis_apl/apps/search/package.json
Lukasz Ostrowski 21f0a60f07
Add search app (#108)
* Add Search App to apps

* Link eslint config to invoices

* Changesets
2023-02-08 09:28:14 +01:00

64 lines
No EOL
2 KiB
JSON

{
"name": "saleor-app-search",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
"build": "pnpm generate && next build",
"start": "next start",
"lint": "next lint",
"fetch-schema": "curl https://raw.githubusercontent.com/saleor/saleor/${npm_package_saleor_schemaVersion}/saleor/graphql/schema.graphql > graphql/schema.graphql",
"generate": "graphql-codegen"
},
"saleor": {
"schemaVersion": "3.7"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "4.0.0-alpha.61",
"@saleor/app-sdk": "0.27.1",
"@saleor/macaw-ui": "0.7.2",
"@sentry/nextjs": "^7.31.1",
"@types/debug": "^4.1.7",
"@urql/exchange-auth": "^1.0.0",
"algoliasearch": "4.14.2",
"clsx": "^1.2.1",
"debug": "^4.3.4",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"instantsearch.css": "^7.4.5",
"next": "13.1.2",
"next-urql": "4.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.39.1",
"react-instantsearch-hooks-web": "^6.38.0",
"react-query": "^3.39.2",
"urql": "^3.0.3"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.11",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typed-document-node": "^2.3.6",
"@graphql-codegen/typescript": "2.8.1",
"@graphql-codegen/typescript-operations": "2.5.6",
"@graphql-codegen/typescript-urql": "^3.7.3",
"@graphql-codegen/urql-introspection": "2.2.1",
"@graphql-typed-document-node/core": "^3.1.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"eslint": "8.27.0",
"eslint-config-next": "13.0.2",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"typescript": "4.8.4",
"eslint-config-saleor": "workspace:*"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md,json}": "prettier --write"
}
}