forked from medusajs/nextjs-starter-medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "medusa-next",
"version": "1.0.3",
"private": true,
"author": "Kasper Fabricius Kristensen <[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 --port ${PORT}",
"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/medusa": "^1.3.7",
"@medusajs/medusa-js": "^1.2.6",
"@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.13.1",
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"medusa-react": "^0.3.5",
"next": "^12.2.0",
"react": "17.0.2",
"react-country-flag": "^3.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.30.0",
"react-instantsearch-hooks-web": "^6.29.0",
"react-intersection-observer": "^9.3.4",
"react-query": "^3.34.16",
"sharp": "^0.30.7"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@types/react-instantsearch-dom": "^6.12.3",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"cypress": "^10.3.0",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"jest": "^28.1.2",
"jest-html-reporters": "^3.0.10",
"postcss": "^8.4.8",
"tailwindcss": "^3.0.23",
"ts-node": "^10.8.2",
"typescript": "4.6.2"
},
"engines": {
"node": ">=16.0.0"
}
}