forked from saleor/storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.93 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
{
"name": "react-storefront",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"debug": "NODE_OPTIONS='--inspect' PORT=3001 next dev",
"dev": "PORT=3001 next dev",
"build": "next build",
"postbuild": "next-sitemap",
"analyze-build": "ANALYZE=true next build",
"start": "next start",
"lint": "prettier --write . && next lint --fix",
"generate": "dotenv -c -- graphql-codegen --config codegen.yml -w"
},
"dependencies": {
"@apollo/client": "3.4.16",
"@headlessui/react": "1.4.1",
"@heroicons/react": "1.0.5",
"@saleor/sdk": "^0.4.0-7",
"@stripe/react-stripe-js": "^1.6.0",
"@stripe/stripe-js": "^1.21.0",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/typography": "^0.4.1",
"clsx": "1.1.1",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.1.0",
"editorjs-blocks-react-renderer": "^1.2.1",
"graphql": "16.0.1",
"next": "12.0.2",
"next-seo": "^4.28.1",
"next-sitemap": "^1.6.203",
"next-usequerystate": "1.4.0-beta.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.18.1",
"react-use": "^17.3.1",
"sharp": "^0.29.2"
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "2.2.2",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.3.0",
"@graphql-codegen/typescript-apollo-client-helpers": "^2.1.7",
"@graphql-codegen/typescript-operations": "2.2.0",
"@graphql-codegen/typescript-react-apollo": "3.2.0",
"@next/bundle-analyzer": "^12.0.2",
"@types/react": "17.0.34",
"autoprefixer": "10.4.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"postcss": "8.3.11",
"prettier": "2.4.1",
"tailwindcss": "2.2.19",
"typescript": "4.4.4"
}
}