forked from medusajs/nextjs-starter-medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "medusa-next",
"version": "1.0.3",
"private": true,
"author": "Kasper Fabricius Kristensen <kasper@medusajs.com> & Victor Gerbrands <victor@medusajs.com> (https://www.medusajs.com)",
"description": "Next.js Starter to be used with Medusa server",
"keywords": [
"medusa-storefront"
],
"scripts": {
"dev": "next dev -p 8000",
"build": "next build",
"start": "next start -p 8000",
"lint": "next lint",
"cypress": "cypress open",
"analyze": "ANALYZE=true next build",
"pages:build": "npx @cloudflare/next-on-pages",
"pages:preview": "npm run pages:build && wrangler pages dev .vercel/output/static --compatibility-date=2024-01-17 --compatibility-flag=nodejs_compat",
"pages:deploy": "npm run pages:build && wrangler pages deploy .vercel/output/static"
},
"resolutions": {
"webpack": "^5",
"@types/react": "17.0.40"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@hookform/error-message": "^2.0.0",
"@medusajs/link-modules": "^0.2.8",
"@medusajs/medusa-js": "^6.1.7",
"@medusajs/modules-sdk": "^1.12.8",
"@medusajs/pricing": "^0.1.9",
"@medusajs/product": "^0.3.9",
"@medusajs/ui": "^2.4.1",
"@meilisearch/instant-meilisearch": "^0.16.0",
"@paypal/paypal-js": "^8.0.2",
"@paypal/react-paypal-js": "^8.1.3",
"@stripe/react-stripe-js": "^2.5.1",
"@stripe/stripe-js": "^3.0.6",
"algoliasearch": "^4.22.1",
"lodash": "^4.17.21",
"medusa-react": "^9.0.15",
"next": "14.1.1-canary.77",
"react": "^18.2.0",
"react-country-flag": "^3.0.2",
"react-dom": "^18.2.0",
"react-instantsearch-hooks-web": "^6.29.0",
"react-intersection-observer": "^9.8.1",
"tailwindcss-radix": "^2.8.0",
"webpack": "^5.90.3"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@cloudflare/next-on-pages": "^1.9.0",
"@cloudflare/workers-types": "^4.20240222.0",
"@medusajs/client-types": "^0.2.9",
"@medusajs/medusa": "^1.20.2",
"@medusajs/ui-preset": "^1.1.2",
"@types/lodash": "^4.14.202",
"@types/node": "20.11.21",
"@types/react": "18.2.60",
"@types/react-dom": "^18.2.19",
"@types/react-instantsearch-dom": "^6.12.7",
"autoprefixer": "^10.4.17",
"babel-loader": "^9.1.3",
"cypress": "^13.6.6",
"eslint": "8.57.0",
"eslint-config-next": "^14.1.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vercel": "^33.5.2",
"wrangler": "^3.30.0"
}
}