-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.94 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "elastic-path-storefront",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"type:check": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:ci:e2e": "NODE_ENV=test yarn build && (yarn start & (sleep 5 && npx playwright install --with-deps && yarn test:e2e && kill $(lsof -t -i tcp:3000)))",
"test:e2e": "NODE_ENV=test playwright test",
"build:e2e": "NODE_ENV=test next build",
"start:e2e": "NODE_ENV=test next start"
},
"dependencies": {
"@elasticpath/js-sdk": "5.0.0",
"@elasticpath/react-shopper-hooks": "0.14.0",
"clsx": "^1.2.1",
"cookies-next": "^4.0.0",
"focus-visible": "^5.2.0",
"formik": "^2.2.9",
"next": "^14.0.0",
"server-only": "^0.0.1",
"pure-react-carousel": "^1.29.0",
"react": "^18.3.1",
"react-device-detect": "^2.2.2",
"react-dom": "^18.3.1",
"react-toastify": "^9.1.3",
"@heroicons/react": "^2.0.18",
"@headlessui/react": "^1.7.17",
"rc-slider": "^10.3.0",
"zod": "^3.22.4",
"zod-formik-adapter": "^1.2.0",
"@floating-ui/react": "^0.26.3",
"@hookform/resolvers": "^3.3.2",
"@hookform/error-message": "^2.0.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@tanstack/react-query": "^5.51.23",
"class-variance-authority": "^0.7.0",
"react-hook-form": "^7.49.0",
"tailwind-clip-path": "^1.0.0",
"tailwind-merge": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@next/bundle-analyzer": "^14.0.0",
"@next/env": "^14.0.0",
"@svgr/webpack": "^6.3.1",
"@types/node": "18.7.3",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"babel-loader": "^8.2.5",
"eslint": "^8.49.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"encoding": "^0.1.13",
"eslint-plugin-react": "^7.33.2",
"vite": "^4.2.1",
"vitest": "^0.34.5",
"@vitest/coverage-istanbul": "^0.34.5",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@playwright/test": "^1.28.1",
"lint-staged": "^13.0.3",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"typescript": "^5.2.2",
"tailwindcss": "^3.3.3",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.30",
"prettier-plugin-tailwindcss": "^0.5.4",
"@tailwindcss/forms": "^0.5.7",
"tailwindcss-animate": "^1.0.7"
}
}