-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.35 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
{
"name": "my-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 pnpm build && (pnpm start & (sleep 5 && npx playwright install --with-deps && pnpm 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/react-shopper-hooks": "^0.6.2",
"@elasticpath/shopper-common": "^0.2.1",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@moltin/sdk": "^27.0.0",
"@orama/orama": "^2.0.2",
"@oramacloud/client": "^1.0.4",
"clsx": "^1.2.1",
"cookies-next": "^4.0.0",
"focus-visible": "^5.2.0",
"formik": "^2.2.9",
"ndjson": "^2.0.0",
"next": "^14.0.0",
"pure-react-carousel": "^1.29.0",
"rc-slider": "^10.5.0",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.3",
"server-only": "^0.0.1",
"split2": "^4.2.0",
"zod": "^3.22.4",
"zod-formik-adapter": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@next/bundle-analyzer": "^14.0.0",
"@next/env": "^14.0.0",
"@playwright/test": "^1.28.1",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/node": "18.7.3",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@vitest/coverage-istanbul": "^0.34.5",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.2.5",
"encoding": "^0.1.13",
"eslint": "^8.49.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.2.1",
"vitest": "^0.34.5"
}
}