saleor-apps-redis_apl/apps/slack/package.json
Lukasz Ostrowski 9f843b2d31
Extract TitleBar and AppIcon to shared package and implement it in apps (#134)
* Update imports from apps-shared package

* Extract main bar and app icon

* Remove graphql generated

* Implement AppIcon and MainBar in data importer and invoices

* Change name to TitleBar

* Use TitleBar and AppIcon from shared package

* Use title bar from shared in search

* Refactor slack to use TitleBar from shared package

* Make TitleBar sticky

* Run codegen before cicd tests

* Add generate script
2023-02-09 18:41:23 +01:00

61 lines
2 KiB
JSON

{
"name": "saleor-app-slack",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
"build": "pnpm generate && next build",
"start": "next start",
"lint": "pnpm generate && prettier --loglevel warn --write . && eslint --fix .",
"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.10"
},
"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.30.0",
"@urql/exchange-auth": "^1.0.0",
"clsx": "^1.2.1",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"jose": "^4.11.2",
"next": "13.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "^6.1.0",
"urql": "^3.0.3",
"usehooks-ts": "^2.9.1",
"@saleor/apps-shared": "workspace:*"
},
"devDependencies": {
"@graphql-codegen/cli": "2.7.0",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typed-document-node": "^2.2.14",
"@graphql-codegen/typescript": "2.6.0",
"@graphql-codegen/typescript-operations": "2.4.3",
"@graphql-codegen/typescript-urql": "^3.5.13",
"@graphql-codegen/urql-introspection": "2.1.1",
"@graphql-typed-document-node/core": "^3.1.1",
"@types/node": "^18.7.16",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"autoprefixer": "^10.4.7",
"clean-publish": "^4.0.1",
"postcss": "^8.4.14",
"pretty-quick": "^3.1.3",
"typescript": "4.8.3",
"eslint-config-saleor": "workspace:*"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md,json}": "prettier --write"
}
}