This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.55 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
{
"name": "test-hydrogen-app",
"description": "This is a dev environment for Hydrogen",
"version": "0.6.4",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"lint": "npm-run-all lint:*",
"lint:js": "eslint --no-error-on-unmatched-pattern --ext .js,.ts,.jsx,.tsx src",
"lint:css": "stylelint ./src/**/*.{css,sass,scss}",
"build": "yarn build:client && yarn build:server && yarn build:worker",
"build:client": "vite build --outDir dist/client --manifest",
"build:server": "vite build --outDir dist/server --ssr src/entry-server.jsx",
"build:worker": "WORKER=true vite build --outDir dist/worker --ssr worker.js",
"serve": "node --enable-source-maps server"
},
"prettier": "@shopify/prettier-config",
"devDependencies": {
"@shopify/eslint-plugin": "^40.4.0",
"@shopify/prettier-config": "^1.1.2",
"@shopify/stylelint-plugin": "^10.0.1",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.2.5",
"eslint": "^7.31.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"prettier": "^2.3.2",
"stylelint": "^13.13.0",
"tailwindcss": "^2.2.4",
"vite": "^2.6.14"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@plasmicapp/loader-react": "^1.0.39",
"@plasmicapp/watcher": "^1.0.21",
"@shopify/hydrogen": "^0.7.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"graphql-tag": "^2.12.4",
"react": "18.0.0-alpha-e6be2d531",
"react-dom": "18.0.0-alpha-e6be2d531",
"react-router-dom": "^5.2.0",
"serve-static": "^1.14.1"
}
}