forked from saleor/storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.36 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-storefront",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^14 || ^16 || ^18"
},
"scripts": {
"debug": "NODE_OPTIONS='--inspect' next dev --port 3001",
"dev": "next dev --port 3001",
"build": "next build",
"postbuild": "next-sitemap",
"translations": "formatjs extract './{components,pages}/**/*.{ts,tsx}' --out-file temp.json --flatten --id-interpolation-pattern '[sha512:contenthash:base64:6]' && formatjs compile 'temp.json' --out-file locale/en-US.json && rm ./temp.json",
"analyze-build": "ANALYZE=true next build",
"start": "next start",
"lint": "prettier --write . && next lint --fix",
"generate": "dotenv -c -- graphql-codegen --config codegen.yml -w",
"paths": "pathpida --ignorePath .gitignore",
"prepare": "husky install",
"cy:run": "cypress run",
"cy:open": "cypress open"
},
"dependencies": {
"@apollo/client": "3.5.10",
"@formatjs/swc-plugin": "^1.4.0",
"@formatjs/ts-transformer": "^3.9.2",
"@graphql-codegen/typescript-apollo-client-helpers": "^2.1.15",
"@headlessui/react": "^1.6.0",
"@heroicons/react": "^1.0.6",
"@saleor/sdk": "^0.4.4",
"@saleor/ui-kit": "^0.0.1",
"@stripe/react-stripe-js": "^1.7.0",
"@stripe/stripe-js": "^1.26.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"clsx": "1.1.1",
"dotenv": "^16.0.0",
"dotenv-cli": "^5.1.0",
"editorjs-blocks-react-renderer": "^1.2.4",
"graphql": "16.3.0",
"graphql-tag": "^2.12.6",
"next": "12.1.5",
"next-seo": "^5.3.0",
"next-sitemap": "^2.4.3",
"next-usequerystate": "^1.7.2",
"nextjs-progressbar": "^0.0.14",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-hook-form": "^7.29.0",
"react-intl": "^5.24.6",
"react-use": "^17.3.2",
"tailwind-scrollbar-hide": "^1.1.7"
},
"devDependencies": {
"@formatjs/cli": "^4.8.2",
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-operations": "2.3.5",
"@graphql-codegen/typescript-react-apollo": "3.2.11",
"@next/bundle-analyzer": "^12.1.4",
"@svgr/webpack": "^6.2.1",
"@types/qs": "^6.9.7",
"@types/react": "17.0.43",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"autoprefixer": "10.4.2",
"cypress": "^10.1.0",
"eslint": "8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-formatjs": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"pathpida": "^0.18.1",
"postcss": "8.4.12",
"prettier": "2.6.2",
"react-hook-form": "^7.29.0",
"react-use": "^17.3.2",
"tailwindcss": "3.0.23",
"typescript": "4.6.3"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "18",
"react-dom": "18",
"graphql": "16"
}
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md,json}": "prettier --write"
}
}