4
0
forked from crowetic/commerce
commerce/package.json

60 lines
1.5 KiB
JSON
Raw Normal View History

2020-09-21 14:54:16 -05:00
{
"name": "e-comm-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
2020-10-02 14:59:35 -03:00
"pre-build": "yarn generate",
2020-09-21 14:54:16 -05:00
"build": "next build",
2020-09-29 21:41:26 -05:00
"start": "next start",
"generate": "graphql-codegen"
2020-09-21 14:54:16 -05:00
},
"graphql": {
"schema": "lib/bigcommerce/schema.graphql",
"documents": "lib/bigcommerce/**/*.{graphql,js,ts,jsx,tsx}"
2020-09-21 14:54:16 -05:00
},
2020-10-01 20:38:40 -05:00
"prettier": {
"semi": false,
"singleQuote": true
},
2020-09-21 14:54:16 -05:00
"dependencies": {
2020-10-06 14:58:38 -03:00
"@headlessui/react": "^0.2.0",
2020-09-29 09:23:23 -03:00
"@tailwindcss/ui": "^0.6.2",
2020-09-23 15:19:36 -03:00
"@types/classnames": "^2.2.10",
"classnames": "^2.2.6",
2020-10-03 16:06:41 -05:00
"cookie": "^0.4.1",
2020-10-04 21:20:52 -05:00
"js-cookie": "^2.2.1",
"lodash.debounce": "^4.0.8",
"next": "^9.5.4",
2020-10-12 21:40:39 -03:00
"next-themes": "^0.0.4",
2020-10-02 11:03:58 -03:00
"postcss-nesting": "^7.0.1",
2020-09-21 14:54:16 -05:00
"react": "^16.13.1",
2020-10-08 15:21:35 -06:00
"react-aria": "^3.0.0",
2020-09-21 14:54:16 -05:00
"react-dom": "^16.13.1",
2020-10-12 21:40:39 -03:00
"react-icons": "^3.11.0",
2020-10-08 15:36:27 -06:00
"react-merge-refs": "^1.1.0",
2020-10-04 16:34:22 -03:00
"react-ticker": "^1.2.2",
2020-09-21 14:54:16 -05:00
"swr": "^0.3.3"
},
"devDependencies": {
2020-09-29 21:41:26 -05:00
"@graphql-codegen/cli": "^1.17.10",
2020-09-29 23:35:41 -05:00
"@graphql-codegen/schema-ast": "^1.17.8",
2020-09-29 21:41:26 -05:00
"@graphql-codegen/typescript": "^1.17.10",
"@graphql-codegen/typescript-operations": "^1.17.8",
2020-10-03 16:06:41 -05:00
"@types/cookie": "^0.4.0",
2020-10-04 21:20:52 -05:00
"@types/js-cookie": "^2.2.6",
"@types/lodash.debounce": "^4.0.6",
2020-09-23 16:51:06 -03:00
"@types/node": "^14.11.2",
2020-09-21 14:54:16 -05:00
"@types/react": "^16.9.49",
2020-09-29 21:41:26 -05:00
"graphql": "^15.3.0",
2020-09-21 15:42:32 -05:00
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
2020-10-01 20:38:40 -05:00
"prettier": "^2.1.2",
2020-09-21 15:42:32 -05:00
"tailwindcss": "^1.8.10",
2020-09-21 14:54:16 -05:00
"typescript": "^4.0.3"
2020-09-29 21:41:26 -05:00
},
"resolutions": {
"webpack": "^5.0.0-beta.30"
2020-09-21 14:54:16 -05:00
}
}