saleor-apps-redis_apl/apps/data-importer/package.json

69 lines
2.1 KiB
JSON
Raw Normal View History

2023-02-07 18:11:39 +00:00
{
"name": "saleor-app-data-importer",
"version": "1.3.0",
2023-02-07 18:11:39 +00:00
"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",
2023-02-07 19:37:30 +00:00
"test": "vitest",
"test:ci": "CI=true vitest --coverage"
2023-02-07 18:11:39 +00:00
},
"saleor": {
2023-02-07 19:09:51 +00:00
"schemaVersion": "3.10"
2023-02-07 18:11:39 +00:00
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "4.0.0-alpha.61",
2023-02-15 12:01:19 +00:00
"@saleor/app-sdk": "0.29.0",
2023-03-01 14:24:16 +00:00
"@saleor/apps-shared": "workspace:*",
2023-02-07 18:11:39 +00:00
"@saleor/macaw-ui": "^0.7.2",
2023-03-01 14:24:16 +00:00
"@sentry/nextjs": "^7.39.0",
2023-02-07 18:11:39 +00:00
"@urql/exchange-auth": "^1.0.0",
2023-02-07 19:37:30 +00:00
"@vitejs/plugin-react": "^3.1.0",
2023-02-07 18:11:39 +00:00
"clsx": "^1.2.1",
"dot-object": "^2.1.4",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"jose": "^4.11.2",
"jsdom": "^20.0.3",
2023-02-07 19:09:51 +00:00
"next": "13.1.6",
"nuvo-react": "^1.22.1",
2023-02-07 18:11:39 +00:00
"react": "18.2.0",
"react-dom": "18.2.0",
"urql": "^3.0.3",
"usehooks-ts": "^2.9.1",
2023-02-07 19:37:30 +00:00
"vite": "^4.1.1",
"vitest": "^0.28.4",
2023-03-01 14:24:16 +00:00
"zod": "^3.20.2"
2023-02-07 18:11:39 +00:00
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.3",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typed-document-node": "^2.3.3",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-urql": "^3.7.0",
"@graphql-codegen/urql-introspection": "2.2.1",
"@graphql-typed-document-node/core": "^3.1.1",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/dot-object": "^2.1.2",
"@types/node": "^18.8.1",
2023-02-07 19:09:51 +00:00
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
2023-03-01 14:24:16 +00:00
"@vitest/coverage-c8": "^0.28.4",
"eslint": "^8.33.0",
2023-02-07 19:37:30 +00:00
"eslint-config-saleor": "workspace:*",
2023-03-01 14:24:16 +00:00
"typescript": "4.9.5"
2023-02-07 18:11:39 +00:00
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md,json}": "prettier --write"
}
}