-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.76 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.76 KB
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
{
"name": "storefront",
"version": "0.1.0",
"description": "SPA Storefront Boilerplate for Unchained Engine",
"license": "Apache-2.0",
"type": "module",
"private": true,
"engineStrict": true,
"engines": {
"node": ">=22"
},
"dependencies": {
"@apollo/client": "^4.1.6",
"@coingecko/cryptoformat": "^0.8.2",
"@formatjs/intl-datetimeformat": "^6.18.2",
"@formatjs/intl-numberformat": "^8.15.6",
"@formatjs/intl-pluralrules": "^5.4.6",
"@formatjs/intl-relativetimeformat": "^11.4.13",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@paypal/react-paypal-js": "^8.9.2",
"@stripe/react-stripe-js": "^5.6.1",
"@stripe/stripe-js": "^8.9.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"canvas-confetti": "^1.9.4",
"classnames": "^2.5.1",
"cookie": "^1.1.1",
"deepmerge": "^4.3.1",
"dotenv-extended": "^2.9.0",
"graphql": "^16.13.1",
"http-proxy-middleware": "^3.0.5",
"intl-messageformat": "^10.7.18",
"lodash": "^4.17.23",
"next": "^16.1.6",
"react": "^19.2.4",
"react-datepicker": "^9.1.0",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"react-hook-qrcode-svg": "^1.5.1",
"react-hot-toast": "^2.6.0",
"react-image-gallery": "^1.4.0",
"react-intl": "^7.1.14",
"react-markdown": "^10.1.0",
"react-range-slider-input": "^3.3.2",
"rxjs": "^7.8.2",
"validator": "^13.15.26"
},
"devDependencies": {
"@formatjs/cli": "^6.13.1",
"@graphql-eslint/eslint-plugin": "^4.4.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-formatjs": "^5.4.2",
"eslint-plugin-prettier": "^5.5.5",
"graphql-config": "^5.1.6",
"postcss": "^8.5.8",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
},
"overrides": {
"tar": ">=7.5.11"
},
"scripts": {
"build": "SUPPRESS_ENV_ERRORS=1 next build",
"dev:local": "UNCHAINED_ENDPOINT=http://localhost:4010/graphql next dev",
"dev": "next dev",
"lint": "eslint --fix .",
"start": "next start",
"update-schema": "npx --yes get-graphql-schema http://localhost:4010/graphql --json > schema.json && node possibleTypesGenerator.js",
"extract-translation": "formatjs extract '(pages|modules)/**/*.{ts,tsx,jsx}' --out-file lang/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]'",
"compile-translation": "formatjs compile ./lang/en.json --out-file ./i18n/en.json --format custom-formatter.js && node extract-missing-translation-keys.js"
}
}