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

75 lines
2.1 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",
2020-10-14 20:41:12 -05:00
"generate": "graphql-codegen",
"generate:definitions": "node lib/bigcommerce/scripts/generate-definitions.js"
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-10-15 11:45:01 -03:00
"animate.css": "^4.1.1",
2020-10-20 12:19:18 -03:00
"bowser": "^2.11.0",
"bunyan": "^1.8.14",
"bunyan-prettystream": "^0.1.3",
2020-09-23 15:19:36 -03:00
"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",
2020-10-19 13:56:29 -05:00
"lodash.random": "^3.2.0",
"next": "^9.5.6-canary.9",
2020-10-14 12:27:54 -03:00
"next-seo": "^4.11.0",
2020-10-12 21:40:39 -03:00
"next-themes": "^0.0.4",
2020-10-14 12:44:03 -03:00
"nextjs-progressbar": "^0.0.6",
2020-10-02 11:03:58 -03:00
"postcss-nesting": "^7.0.1",
2020-10-20 10:31:40 -03:00
"react": "^16.14.0",
2020-10-08 15:21:35 -06:00
"react-aria": "^3.0.0",
2020-10-20 10:31:40 -03:00
"react-dom": "^16.14.0",
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-14 15:17:39 -03:00
"react-swipeable-views": "^0.13.9",
"react-swipeable-views-utils": "^0.14.0-alpha.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-14 20:41:12 -05:00
"@manifoldco/swagger-to-ts": "^2.1.0",
2020-10-19 13:57:40 -05:00
"@types/bunyan": "^1.8.6",
"@types/bunyan-prettystream": "^0.1.31",
"@types/classnames": "^2.2.10",
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-10-19 13:56:29 -05:00
"@types/lodash.random": "^3.2.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-10-19 13:57:40 -05:00
"@types/react-swipeable-views": "^0.13.0",
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
}
}