-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.37 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
{
"name": "hello-world",
"private": true,
"sideEffects": false,
"version": "0.0.0",
"scripts": {
"build": "npm run build:css && shopify hydrogen build --entry ./server",
"build:css": "postcss app/styles/tailwind.css -o app/styles/tailwind-build.css --env production",
"dev": "npm run build:css && concurrently -g -r npm:dev:css \"shopify hydrogen dev\"",
"dev:css": "postcss app/styles/tailwind.css -o app/styles/tailwind-build.css -w",
"preview": "npm run build && shopify hydrogen preview",
"lint": "eslint --no-error-on-unmatched-pattern --ext .js,.ts,.jsx,.tsx .",
"g": "shopify hydrogen generate"
},
"prettier": "@shopify/prettier-config",
"dependencies": {
"@remix-run/react": "1.14.0",
"@shopify/cli": "3.29.0",
"@shopify/cli-hydrogen": "^4.0.9",
"@shopify/hydrogen": "^2023.1.6",
"@shopify/remix-oxygen": "^1.0.4",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"isbot": "^3.6.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "1.14.0",
"@shopify/prettier-config": "^1.1.2",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"eslint": "^8.20.0",
"eslint-plugin-hydrogen": "0.12.2",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.4",
"tailwindcss": "^3.3.1"
},
"engines": {
"node": ">=16.13"
}
}