-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.22 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
{
"name": "demo-store",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "npm run build:css && shopify hydrogen build",
"build:css": "postcss styles --base styles --dir app/styles --env production",
"dev": "npm run build:css && concurrently -g --kill-others-on-fail -r npm:dev:css \"shopify hydrogen dev\"",
"dev:css": "postcss styles --base styles --dir app/styles -w",
"preview": "npm run build && shopify hydrogen preview",
"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"
},
"prettier": "@shopify/prettier-config",
"dependencies": {
"@headlessui/react": "^1.7.2",
"@remix-run/react": "1.12.0",
"@shopify/cli": "3.29.0",
"@shopify/cli-hydrogen": "^4.0.8",
"@shopify/hydrogen": "^2023.1.5",
"@shopify/remix-oxygen": "^1.0.3",
"clsx": "^1.2.1",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"isbot": "^3.6.5",
"jwt-decode": "^3.1.2",
"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",
"snakecase-keys": "^5.4.5",
"tiny-invariant": "^1.2.0",
"typographic-base": "^1.0.4"
},
"devDependencies": {
"@remix-run/dev": "1.12.0",
"@remix-run/eslint-config": "1.12.0",
"@shopify/eslint-plugin": "^42.0.1",
"@shopify/oxygen-workers-types": "^3.17.2",
"@shopify/prettier-config": "^1.1.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@types/crypto-js": "^4.1.1",
"@types/eslint": "^8.4.10",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-plugin-hydrogen": "0.12.2",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.8",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.13"
}
}