-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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": "demo-store",
"private": true,
"sideEffects": false,
"version": "2.1.6",
"type": "module",
"scripts": {
"dev": "shopify hydrogen dev --codegen",
"build": "shopify hydrogen build --codegen",
"preview": "npm run build && shopify hydrogen preview",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui",
"lint": "eslint --no-error-on-unmatched-pattern --ext .js,.ts,.jsx,.tsx .",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"typecheck": "tsc --noEmit"
},
"browserslist": [
"defaults"
],
"prettier": "@shopify/prettier-config",
"dependencies": {
"@headlessui/react": "^1.7.2",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/server-runtime": "^2.13.1",
"@shopify/cli": "^3.72.1",
"@shopify/hydrogen": "^2024.10.1",
"@shopify/remix-oxygen": "^2.0.9",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"isbot": "^3.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.4.1",
"react-use": "^17.4.0",
"schema-dts": "^1.1.0",
"tiny-invariant": "^1.2.0",
"typographic-base": "^1.0.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@playwright/test": "^1.48.2",
"@remix-run/dev": "^2.13.1",
"@remix-run/eslint-config": "^2.13.1",
"@shopify/eslint-plugin": "^42.0.1",
"@shopify/hydrogen-codegen": "^0.3.2",
"@shopify/mini-oxygen": "^3.1.0",
"@shopify/oxygen-workers-types": "^4.1.2",
"@shopify/prettier-config": "^1.1.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@total-typescript/ts-reset": "^0.4.2",
"@types/eslint": "^8.4.10",
"@types/node": "^22.8.4",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-plugin-hydrogen": "0.12.2",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.2.0",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"tailwindcss": "^3.3.0",
"typescript": "^5.2.2",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.3.1"
},
"engines": {
"node": ">=20.0.0"
}
}