forked from saleor/storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "react-storefront",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"debug": "NODE_OPTIONS='--inspect' next dev --port 3001",
"dev": "next dev --port 3001",
"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.5.6",
"@headlessui/react": "1.4.2",
"@heroicons/react": "1.0.5",
"@saleor/sdk": "^0.4.0",
"@stripe/react-stripe-js": "^1.7.0",
"@stripe/stripe-js": "^1.22.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"clsx": "1.1.1",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.1.1",
"editorjs-blocks-react-renderer": "^1.2.1",
"graphql": "16.1.0",
"next": "12.0.7",
"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.22.1",
"react-use": "^17.3.1"
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "2.3.0",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.4.1",
"@graphql-codegen/typescript-apollo-client-helpers": "^2.1.8",
"@graphql-codegen/typescript-operations": "2.2.1",
"@graphql-codegen/typescript-react-apollo": "3.2.2",
"@next/bundle-analyzer": "^12.0.7",
"@types/react": "17.0.37",
"autoprefixer": "10.4.0",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"postcss": "8.4.5",
"prettier": "2.5.1",
"tailwindcss": "3.0.2",
"typescript": "4.5.4"
}
}