-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.1 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
{
"name": "nextjs-shopify",
"version": "0.1.0",
"private": true,
"author": {
"email": "[email protected]",
"name": "Emanuele Buccelli"
},
"scripts": {
"dev": "npx next dev",
"build": "next build",
"serve": "next start",
"start": "npx next dev -p 8006",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,json,md}\"",
"test": "NODE_ENV=test jest --watch",
"push-db": "npx prisma db push --preview-feature",
"generate-shopify": "graphql-codegen --config shopify-codegen.yml -r dotenv/config",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"husky": {
"hooks": {
"pre-commit": ""
}
},
"dependencies": {
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/introspection": "^1.18.1",
"@graphql-codegen/typescript": "^1.20.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@graphql-tools/load-files": "^6.2.5",
"@graphql-tools/merge": "^6.2.5",
"@hapi/iron": "^6.0.0",
"@material-ui/core": "^4.7.1",
"@material-ui/icons": "^4.5.1",
"@next/bundle-analyzer": "^9.3.1",
"@nexus/schema": "^0.20.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-source-maps": "0.0.3",
"apollo-boost": "^0.4.4",
"apollo-cache-instorage": "^0.2.5",
"apollo-server-micro": "^2.19.0",
"cacheable-response": "^2.0.0",
"classnames": "^2.2.6",
"cookie": "^0.4.1",
"cookie-cutter": "^0.2.0",
"debounce": "^1.2.0",
"decache": "^4.6.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-codegen": "^0.4.0",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.10.1",
"isomorphic-unfetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"next": "^10.0.5",
"next-compose-plugins": "^2.2.0",
"next-cookies": "^2.0.3",
"next-fonts": "^1.0.3",
"next-images": "^1.2.0",
"next-with-apollo": "^4.3.0",
"nexus": "^1.0.0",
"nexus-plugin-prisma": "^0.27.0",
"nprogress": "^0.2.0",
"prisma-binding": "^2.3.16",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-adopt": "^0.6.0",
"react-apollo": "^3.1.3",
"react-dom": "16.12.0",
"react-gtm-module": "^2.0.8",
"react-hook-form": "^4.4.6",
"react-icons": "^3.8.0",
"react-multi-carousel": "^2.5.5",
"react-responsive-carousel": "^3.2.4",
"react-toasts": "^3.0.6",
"styled-components": "^4.4.1",
"sweetalert2": "^9.10.3",
"three": "^0.112.1"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@types/shopify-buy": "^2.10.5",
"@types/styled-components": "^5.1.7",
"babel-eslint": "^10.1.0",
"babel-plugin-graphql-js-client-transform": "^1.1.1",
"babel-plugin-styled-components": "^1.10.7",
"graphql-js-client": "^0.12.0",
"husky": "^4.2.3",
"merge-graphql-schemas": "^1.7.8",
"next-seo": "^4.22.0",
"prettier": "^1.19.1",
"typescript": "^4.1.3"
}
}