-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.69 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@bigcommerce/catalyst-core",
"description": "BigCommerce Catalyst is a Next.js starter kit for building headless BigCommerce storefronts.",
"version": "1.6.2",
"private": true,
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "npm run generate && next dev",
"generate": "dotenv -e .env.local -- node ./scripts/generate.cjs",
"build": "npm run generate && next build",
"build:analyze": "ANALYZE=true npm run build",
"start": "next start",
"prelint": "next typegen",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@bigcommerce/catalyst-client": "workspace:^",
"@c15t/nextjs": "^1.8.2",
"@conform-to/react": "^1.6.1",
"@conform-to/zod": "^1.6.1",
"@icons-pack/react-simple-icons": "^11.2.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.208.0",
"@opentelemetry/instrumentation": "^0.208.0",
"@opentelemetry/sdk-logs": "^0.208.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-portal": "^1.1.9",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"@t3-oss/env-core": "^0.13.6",
"@upstash/redis": "^1.35.0",
"@vercel/analytics": "^1.5.0",
"@vercel/functions": "^2.2.12",
"@vercel/otel": "^2.1.0",
"@vercel/speed-insights": "^1.2.0",
"clsx": "^2.1.1",
"content-security-policy-builder": "^2.3.0",
"deepmerge": "^4.3.1",
"embla-carousel": "9.0.0-rc01",
"embla-carousel-autoplay": "9.0.0-rc01",
"embla-carousel-fade": "9.0.0-rc01",
"embla-carousel-react": "9.0.0-rc01",
"gql.tada": "^1.8.10",
"graphql": "^16.11.0",
"dompurify": "^3.3.1",
"jose": "^5.10.0",
"lodash.debounce": "^4.0.8",
"lru-cache": "^11.1.0",
"lucide-react": "^0.474.0",
"next": "~16.2.6",
"next-auth": "5.0.0-beta.30",
"next-intl": "^4.6.1",
"nuqs": "^2.4.3",
"p-lazy": "^5.0.0",
"react": "19.1.7",
"react-day-picker": "^9.7.0",
"react-dom": "19.1.7",
"react-google-recaptcha": "^3.1.0",
"react-headroom": "^3.2.1",
"schema-dts": "^1.1.5",
"server-only": "^0.0.1",
"sonner": "^1.7.4",
"tailwindcss-radix": "^3.0.5",
"uuid": "^11.1.0",
"zod": "^3.25.51"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@bigcommerce/eslint-config": "^2.11.0",
"@bigcommerce/eslint-config-catalyst": "workspace:^",
"@faker-js/faker": "^9.8.0",
"@gql.tada/cli-utils": "^1.6.3",
"@next/bundle-analyzer": "^16.1.6",
"@playwright/test": "^1.52.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.16",
"@types/gtag.js": "^0.0.20",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.15.30",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-headroom": "^3.2.3",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.21",
"dotenv": "^16.5.0",
"dotenv-cli": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.5.10",
"postcss": "^8.5.4",
"postcss-preset-env": "^10.2.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.12",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "1.0.7",
"typescript": "^5.8.3"
}
}