-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
86 lines (86 loc) · 2.69 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"private": true,
"name": "storefront-remix-starter",
"description": "",
"license": "",
"type": "module",
"scripts": {
"build:cf": "cross-env CF_PAGES=1 remix build",
"build:nf": "cross-env NETLIFY=1 remix build",
"build": "remix build",
"dev:wrangler": "cross-env CF_PAGES=1 wrangler pages dev ./public",
"dev": "remix dev",
"dev:cf": "cross-env CF_PAGES=1 remix dev --manual -c \"yarn 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": "^2.4.1",
"@remix-run/cloudflare-pages": "^2.4.1",
"@remix-run/css-bundle": "^2.4.1",
"@remix-run/netlify": "^1.19.3",
"@remix-run/node": "^2.4.1",
"@remix-run/react": "^2.4.1",
"@remix-run/serve": "^2.4.1",
"@remix-run/server-runtime": "^2.4.1",
"@remix-run/v1-route-convention": "^0.1.4",
"@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",
"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",
"i18next": "^23.7.7",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-fs-backend": "^2.3.0",
"i18next-http-backend": "^2.4.2",
"i18next-resources-to-backend": "^1.2.0",
"isbot": "^3.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"remix": "^2.4.1",
"remix-i18next": "^5.5.0",
"remix-validated-form": "^5.1.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231218.0",
"@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": "^2.4.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.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.0",
"wrangler": "^3.22.3"
},
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write"
]
}
}