-
Notifications
You must be signed in to change notification settings - Fork 803
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.62 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.62 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
{
"name": "saleor-storefront",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"dev": "next dev --webpack",
"dev:webpack": "next dev --webpack",
"dev:turbopack": "next dev",
"build": "next build",
"start": "next start",
"predev": "pnpm run generate:all",
"prebuild": "pnpm run generate:all",
"lint": "eslint",
"lint:fix": "eslint --fix",
"generate": "graphql-codegen --config .graphqlrc.ts",
"generate:checkout": "graphql-codegen --config src/checkout/graphql/codegen.ts",
"generate:all": "pnpm run generate && pnpm run generate:checkout",
"test": "vitest",
"test:run": "vitest run",
"knip": "knip",
"prepare": "husky install"
},
"dependencies": {
"@graphql-typed-document-node/core": "3.2.0",
"@headlessui/react": "1.7.18",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@saleor/auth-sdk": "1.0.3",
"@vercel/speed-insights": "1.3.1",
"clsx": "2.1.0",
"editorjs-html": "3.4.3",
"embla-carousel-react": "8.6.0",
"geist": "1.5.1",
"graphql-tag": "2.12.6",
"lodash-es": "4.17.21",
"lucide-react": "0.358.0",
"next": "16.1.2",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"react-error-boundary": "4.0.13",
"server-only": "0.0.1",
"sharp": "0.33.2",
"tailwind-merge": "3.4.0",
"tailwindcss-animate": "1.0.7",
"ts-invariant": "0.10.3",
"urql": "4.0.6",
"xss": "1.0.15"
},
"devDependencies": {
"@graphql-codegen/cli": "6.1.1",
"@graphql-codegen/client-preset": "5.2.2",
"@graphql-codegen/typescript": "5.0.7",
"@graphql-codegen/typescript-operations": "5.0.7",
"@graphql-codegen/typescript-urql": "4.0.1",
"@next/env": "16.0.7",
"@parcel/watcher": "2.3.0",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.10",
"@types/lodash-es": "4.17.12",
"@types/node": "20.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "10.4.23",
"eslint": "9.39.1",
"eslint-config-next": "16.0.7",
"husky": "8.0.3",
"knip": "5.41.1",
"lint-staged": "15.1.0",
"postcss": "8.5.6",
"postcss-import": "16.1.0",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "0.5.9",
"schema-dts": "1.1.2",
"tailwindcss": "3.4.19",
"typescript": "5.3.3",
"vitest": "4.0.17"
},
"resolutions": {
"graphql": "16.8.1"
},
"pnpm": {
"overrides": {
"dset": ">=3.1.4",
"micromatch": ">=4.0.8",
"@babel/runtime": ">=7.26.10",
"@babel/helpers": ">=7.26.10",
"brace-expansion@>=2": ">=2.0.2"
}
},
"packageManager": "pnpm@10.28.1",
"engines": {
"pnpm": ">=9.4.0",
"node": ">=20 <21"
}
}