forked from vendure-ecommerce/storefront-remix-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.39 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
70
71
72
73
74
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build:cf": "cross-env CF_PAGES=1 remix build",
"build": "tailwindcss -m -i ./tailwind.css -o app/styles/app.css && remix build",
"dev:wrangler": "wrangler pages dev ./public",
"dev:css": "tailwindcss -w -i ./tailwind.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:cf": "npm run build:cf && concurrently \"npm run dev:css\" \"remix watch\" \"npm run dev:wrangler\"",
"start:cf": "cross-env NODE_ENV=production yarn run dev:wrangler",
"start": "remix-serve build",
"generate": "graphql-codegen --config codegen.yml",
"prepare": "husky install"
},
"dependencies": {
"@graphql-codegen/typescript-generic-sdk": "^3.0.4",
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@netlify/functions": "^1.3.0",
"@remix-run/cloudflare": "^1.11.1",
"@remix-run/cloudflare-pages": "^1.11.1",
"@remix-run/netlify": "^1.11.1",
"@remix-run/node": "^1.11.1",
"@remix-run/react": "^1.11.1",
"@remix-run/serve": "^1.11.1",
"@remix-run/server-runtime": "^1.11.1",
"@remix-validated-form/with-zod": "^2.0.5",
"@stripe/react-stripe-js": "^1.15.0",
"@stripe/stripe-js": "^1.44.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.4",
"braintree-web-drop-in": "^1.33.7",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix": "^1.11.1",
"remix-validated-form": "^4.6.9",
"zod": "^3.21.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.12",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript": "^2.8.2",
"@graphql-codegen/typescript-operations": "^2.5.7",
"@remix-run/dev": "^1.11.1",
"@types/braintree-web-drop-in": "^1.33.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"concurrently": "^7.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.19",
"prettier": "^2.6.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"wrangler": "^2.4.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write"
]
}
}