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

92 lines
2.1 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",
"find:unused": "next-unused"
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-10-27 10:06:49 -05:00
"@bigcommerce/storefront-data-hooks": "^1.0.2",
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-11-26 13:13:30 -03:00
"@types/body-scroll-lock": "^2.6.1",
2020-11-06 17:11:49 -03:00
"@types/lodash.throttle": "^4.1.6",
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-10-25 19:18:18 -03:00
"email-validator": "^2.0.4",
"js-cookie": "^2.2.1",
"keen-slider": "^5.2.4",
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",
2020-11-26 15:11:59 -03:00
"next": "^10.0.3-canary.3",
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-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-11-05 18:06:59 -03:00
"react-intersection-observer": "^8.30.1",
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-10-22 15:35:09 -03:00
"tailwindcss": "^1.9"
2020-09-21 14:54:16 -05:00
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.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",
"@types/js-cookie": "^2.2.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-25 12:41:36 -03:00
"bunyan": "^1.8.14",
"bunyan-prettystream": "^0.1.3",
"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": {
"webpack": "^5.0.0-beta.30"
2020-11-04 11:53:45 -03:00
},
"license": "MIT"
2020-09-21 14:54:16 -05:00
}