-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
37 lines (37 loc) · 1.18 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
{
"name": "hygrogen-theme",
"private": true,
"version": "0.0.0",
"packageManager": "[email protected]",
"scripts": {
"dev": "concurrently --raw --kill-others --passthrough-arguments \"pnpm run shopify:dev {@}\" \"pnpm run vite:dev\" --",
"build": "vite build",
"deploy": "pnpm run build && pnpm run shopify:deploy",
"lint": "eslint .",
"format": "prettier --write --cache .",
"vite:dev": "vite",
"shopify:dev": "shopify theme dev",
"shopify:deploy": "shopify theme push"
},
"devDependencies": {
"@shopify/prettier-plugin-liquid": "^1.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"postcss": "^8.4.35",
"postcss-import": "^16.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"vite": "^5.1.1",
"vite-plugin-shopify": "^3.0.0"
}
}