forked from medusajs/nextjs-starter-medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "medusa-next",
"version": "1.0.3",
"private": true,
"author": "Kasper Fabricius Kristensen <[email protected]> & Victor Gerbrands <[email protected]> (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"
},
"resolutions": {
"webpack": "^5",
"@types/react": "17.0.40"
},
"dependencies": {
"@headlessui/react": "^1.6.1",
"@hookform/error-message": "^2.0.0",
"@medusajs/link-modules": "^0.2.3",
"@medusajs/medusa-js": "^6.1.4",
"@medusajs/modules-sdk": "^1.12.3",
"@medusajs/pricing": "^0.1.4",
"@medusajs/product": "^0.3.4",
"@medusajs/ui": "^2.2.0",
"@meilisearch/instant-meilisearch": "^0.7.1",
"@paypal/paypal-js": "^5.0.6",
"@paypal/react-paypal-js": "^7.8.1",
"@stripe/react-stripe-js": "^1.7.2",
"@stripe/stripe-js": "^1.29.0",
"algoliasearch": "^4.20.0",
"lodash": "^4.17.21",
"medusa-react": "^9.0.0",
"next": "^14.0.0",
"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.3.4",
"tailwindcss-radix": "^2.8.0",
"webpack": "^5"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@medusajs/client-types": "^0.2.2",
"@medusajs/medusa": "^1.18.0",
"@medusajs/ui-preset": "^1.0.2",
"@types/lodash": "^4.14.195",
"@types/node": "17.0.21",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.18",
"@types/react-instantsearch-dom": "^6.12.3",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"cypress": "^9.5.2",
"eslint": "8.10.0",
"eslint-config-next": "^13.4.5",
"postcss": "^8.4.8",
"prettier": "^2.8.8",
"tailwindcss": "^3.0.23",
"typescript": "^5.3.2"
}
}