4
0
forked from crowetic/commerce

Merge branch 'master' of github.com:okbel/e-comm-example

This commit is contained in:
Belen Curcio
2020-09-30 10:52:08 -03:00
13 changed files with 5986 additions and 153 deletions

View File

@@ -5,7 +5,12 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
"start": "next start",
"generate": "graphql-codegen"
},
"graphql": {
"schema": "lib/bigcommerce/schema.graphql",
"documents": "lib/bigcommerce/**/*.{graphql,js,ts,jsx,tsx}"
},
"dependencies": {
"@tailwindcss/ui": "^0.6.2",
@@ -18,15 +23,20 @@
"react-dom": "^16.13.1",
"swr": "^0.3.3"
},
"resolutions": {
"webpack": "^5.0.0-beta.30"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.17.10",
"@graphql-codegen/schema-ast": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.10",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"graphql": "^15.3.0",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.8.10",
"typescript": "^4.0.3"
},
"resolutions": {
"webpack": "^5.0.0-beta.30"
}
}