-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 3.71 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "next-shop",
"version": "0.1.0",
"private": true,
"author": {
"name": "Grzegorz Pokorski",
"email": "mr.pokorski@gmail.com"
},
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix --quiet",
"format": "pnpm prettier . --write",
"prepare": "husky",
"test:watch": "vitest",
"test:once": "vitest run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"codegen": "gql-gen -r dotenv/config --config codegen.yml",
"codegen:watch": "gql-gen -w -r dotenv/config --config codegen.yml",
"e2e": "pnpm exec playwright test",
"e2e:ui": "pnpm exec playwright test --ui"
},
"dependencies": {
"@hygraph/utils": "1.2.1",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-portal": "1.1.2",
"@radix-ui/react-select": "2.1.2",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slot": "1.1.0",
"@stripe/stripe-js": "3.4.1",
"@t3-oss/env-nextjs": "0.11.1",
"@types/node": "22.8.1",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"autoprefixer": "10.4.20",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"eslint": "9.13.0",
"graphql": "16.9.0",
"js-cookie": "3.0.5",
"keen-slider": "6.8.6",
"lucide-react": "0.453.0",
"next": "15.0.1",
"next-mdx-remote": "5.0.0",
"next-themes": "0.3.0",
"postcss": "8.4.47",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"react-focus-lock": "2.13.2",
"react-icons": "5.3.0",
"stripe": "15.7.0",
"tailwindcss": "3.4.14",
"tailwindcss-animate": "1.0.7",
"tsconfig-paths-webpack-plugin": "4.1.0",
"vite-tsconfig-paths": "5.0.1",
"zod": "3.23.8"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.4.0",
"@graphql-typed-document-node/core": "3.2.0",
"@playwright/test": "1.48.2",
"@storybook/addon-a11y": "7.6.4",
"@storybook/addon-essentials": "7.6.4",
"@storybook/addon-interactions": "7.6.4",
"@storybook/addon-links": "7.6.4",
"@storybook/addon-onboarding": "1.0.10",
"@storybook/addon-styling": "1.3.7",
"@storybook/addon-viewport": "7.6.4",
"@storybook/blocks": "7.6.4",
"@storybook/nextjs": "7.6.4",
"@storybook/react": "7.6.4",
"@storybook/testing-library": "0.2.2",
"@storybook/theming": "7.6.4",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/typography": "0.5.15",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/js-cookie": "3.0.6",
"@types/mdx": "2.0.13",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"@vitejs/plugin-react": "4.3.3",
"eslint-config-next": "15.0.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-storybook": "0.10.1",
"graphql-codegen-typescript-common": "0.18.2",
"husky": "9.1.6",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"storybook": "7.6.4",
"tailwind-merge": "2.5.4",
"typescript": "5.6.3",
"vite": "5.4.10",
"vitest": "2.1.3"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
},
"packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
}