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

109 lines
2.6 KiB
JSON
Raw Normal View History

2020-09-21 14:54:16 -05:00
{
2020-11-04 11:53:45 -03:00
"name": "nextjs-commerce",
"version": "1.0.0",
2020-09-21 14:54:16 -05:00
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "BUNDLE_ANALYZE=both yarn build",
2020-12-29 20:04:26 -05:00
"find:unused": "next-unused",
"generate": "graphql-codegen",
2021-01-11 12:12:51 -03:00
"generate:definitions": "node framework/bigcommerce/scripts/generate-definitions.js"
2020-09-21 14:54:16 -05:00
},
2020-10-01 20:38:40 -05:00
"prettier": {
"semi": false,
"singleQuote": true
2020-11-06 20:32:44 -03:00
},
2020-11-07 19:15:54 -03:00
"next-unused": {
2020-11-06 20:32:44 -03:00
"alias": {
2020-11-07 19:15:54 -03:00
"@lib/*": [
"lib/*"
],
"@assets/*": [
"assets/*"
],
"@config/*": [
"config/*"
],
"@components/*": [
"components/*"
],
"@utils/*": [
"utils/*"
]
2020-11-06 20:32:44 -03:00
},
"debug": true,
"include": [
"components",
"lib",
"pages"
],
2020-11-07 19:15:54 -03:00
"exclude": [],
2020-11-06 20:32:44 -03:00
"entrypoints": [
"pages"
]
2020-10-01 20:38:40 -05:00
},
2020-09-21 14:54:16 -05:00
"dependencies": {
2020-11-07 19:15:54 -03:00
"@reach/portal": "^0.11.2",
2020-09-29 09:23:23 -03:00
"@tailwindcss/ui": "^0.6.2",
2020-10-25 17:33:59 -05:00
"@vercel/fetch": "^6.1.0",
2020-11-26 13:13:30 -03:00
"body-scroll-lock": "^3.1.5",
2020-10-20 12:19:18 -03:00
"bowser": "^2.11.0",
2020-09-23 15:19:36 -03:00
"classnames": "^2.2.6",
2020-12-29 19:20:51 -05:00
"cookie": "^0.4.1",
2021-01-17 12:53:34 -03:00
"dot-object": "^2.1.4",
2020-10-25 19:18:18 -03:00
"email-validator": "^2.0.4",
"js-cookie": "^2.2.1",
"keen-slider": "^5.2.4",
2020-12-29 19:20:51 -05:00
"lodash.debounce": "^4.0.8",
2020-10-19 13:56:29 -05:00
"lodash.random": "^3.2.0",
2020-11-06 17:11:49 -03:00
"lodash.throttle": "^4.1.1",
2021-01-11 13:25:25 -03:00
"next": "^10.0.5",
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",
2021-01-14 12:58:41 -03:00
"normalizr": "^3.6.1",
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",
"react-dom": "^16.14.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",
2021-01-11 12:12:51 -03:00
"swr": "^0.4.0",
"tabbable": "^5.1.5",
2020-10-22 15:35:09 -03:00
"tailwindcss": "^1.9"
2020-09-21 14:54:16 -05:00
},
"devDependencies": {
2020-12-29 19:20:51 -05:00
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/schema-ast": "^1.18.1",
"@graphql-codegen/typescript": "^1.19.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@manifoldco/swagger-to-ts": "^2.1.0",
"@next/bundle-analyzer": "^10.0.1",
2020-12-29 19:22:12 -05:00
"@types/body-scroll-lock": "^2.6.1",
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-12-29 19:20:51 -05:00
"@types/cookie": "^0.4.0",
"@types/js-cookie": "^2.2.6",
2020-12-29 19:20:51 -05:00
"@types/lodash.debounce": "^4.0.6",
2020-10-19 13:56:29 -05:00
"@types/lodash.random": "^3.2.6",
2020-12-29 19:22:12 -05:00
"@types/lodash.throttle": "^4.1.6",
2020-12-29 19:20:51 -05:00
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
2020-10-25 12:41:36 -03:00
"bunyan": "^1.8.14",
"bunyan-prettystream": "^0.1.3",
2020-12-29 19:20:51 -05:00
"graphql": "^15.4.0",
"next-unused": "^0.0.3",
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-10-25 12:41:36 -03:00
"typescript": "^4.0.3"
2020-09-29 21:41:26 -05:00
},
"resolutions": {
2020-12-29 15:00:44 -05:00
"webpack": "5.11.1"
2020-11-04 11:53:45 -03:00
},
2021-01-17 12:53:34 -03:00
"engines": {
"node": ">=14"
2021-01-11 13:55:45 -03:00
},
2020-11-04 11:53:45 -03:00
"license": "MIT"
2020-09-21 14:54:16 -05:00
}