forked from sanity-io/hydrogen-sanity-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2 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
{
"name": "hydrogen-sanity-demo",
"description": "This is a dev environment for Hydrogen",
"version": "0.1.0",
"license": "MIT",
"private": true,
"author": "Sanity.io <hello@sanity.io>",
"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": "cross-env 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.2.0",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"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",
"@heroicons/react": "^1.0.5",
"@sanity/block-content-to-react": "^3.0.0",
"@sanity/client": "^2.21.7",
"@sanity/image-url": "^1.0.1",
"@shopify/hydrogen": "0.7.0",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tippyjs/react": "^4.2.6",
"base-64": "^1.0.0",
"clsx": "^1.1.1",
"compression": "^1.7.4",
"embla-carousel-react": "^5.0.1",
"express": "^4.17.1",
"focus-trap-react": "^8.8.1",
"graphql-tag": "^2.12.4",
"groq": "^2.15.0",
"hydrogen-plugin-sanity": "^0.1.1",
"nocache": "^3.0.1",
"pluralize": "^8.0.0",
"react": "18.0.0-alpha-e6be2d531",
"react-dom": "18.0.0-alpha-e6be2d531",
"react-router-dom": "^5.2.0",
"serve-static": "^1.14.1"
}
}