This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
76
77
{
"name": "d2c-reference-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest --watch",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"type:check": "tsc --noEmit",
"analyze": "ANALYZE=true next build",
"prepare": "husky install"
},
"dependencies": {
"@algolia/react-instantsearch-widget-color-refinement-list": "^1.4.7",
"@chakra-ui/icons": "^2.0.8",
"@chakra-ui/react": "^2.2.8",
"@elasticpath/react-shopper-hooks": "0.1.1",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@moltin/sdk": "^18.1.0",
"@stripe/react-stripe-js": "^1.11.0",
"@stripe/stripe-js": "^1.38.1",
"@types/react-stripe-elements": "^6.0.6",
"algoliasearch": "^4.14.2",
"braintree-web": "^3.87.0",
"braintree-web-drop-in": "^1.33.4",
"clsx": "^1.2.1",
"cookies-next": "^2.1.1",
"dequal": "^2.0.3",
"focus-visible": "^5.2.0",
"formik": "^2.2.9",
"framer-motion": "^7.1.0",
"next": "^12.2.5",
"pure-react-carousel": "^1.29.0",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"sass": "^1.55.0",
"react-instantsearch-hooks-server": "6.38.1",
"react-instantsearch-hooks-web": "6.38.1",
"rxjs": "^7.5.7",
"yup": "^1.0.0-beta.7",
"zlib": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@next/bundle-analyzer": "^13.0.4",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/braintree-web": "^3.75.20",
"@types/braintree-web-drop-in": "^1.28.0",
"@types/node": "18.7.3",
"@types/react": "18.0.17",
"babel-loader": "^8.2.5",
"eslint": "^8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.0.0",
"typescript": "4.7.4"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}