-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 3.15 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
{
"name": "basic-app",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "concurrently \"next dev --port 3000\" \"yarn generate --watch\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"fetch-schema": "rover graph fetch Niftory-Test > generated/schema.graphql",
"generate": "dotenv -- graphql-codegen"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@chakra-ui/icons": "^2.0.12",
"@chakra-ui/react": "^2.3.7",
"@chakra-ui/system": "^2.3.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/inter": "^4.5.14",
"@fontsource/roboto": "^4.5.0",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@onflow/fcl": "1.0.2",
"@onflow/transport-grpc": "1.0.1",
"@urql/core": "^3.0.3",
"@urql/exchange-graphcache": "^5.0.8",
"@urql/exchange-retry": "^1.0.0",
"@use-it/interval": "^1.0.0",
"axios": "^0.27.2",
"buffer": "6.0.3",
"capture-video-frame": "^1.0.0",
"exponential-backoff": "^3.1.0",
"filepond": "^4.30.4",
"filepond-plugin-file-poster": "^2.5.1",
"filepond-plugin-file-validate-size": "^2.2.7",
"filepond-plugin-file-validate-type": "^1.2.8",
"filepond-plugin-image-exif-orientation": "^1.0.11",
"filepond-plugin-image-preview": "^4.6.11",
"filepond-plugin-image-resize": "^2.0.10",
"filepond-plugin-image-transform": "^3.8.7",
"filepond-plugin-media-preview": "^1.0.11",
"formik": "^2.2.9",
"framer-motion": "^6.4.3",
"google-protobuf": "^3.14.0",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"intro.js": "^6.0.0",
"intro.js-react": "^0.7.0",
"jose": "^4.10.4",
"next": "12.2.0",
"next-auth": "^4.10.3",
"openid-client": "5.1.7",
"posthog-js": "^1.35.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-filepond": "^7.1.2",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.6.0",
"react-masonry-css": "^1.0.16",
"react-scroll-parallax": "^3.2.0",
"swr": "^1.3.0",
"url-join": "^5.0.0",
"urql": "^3.0.3"
},
"resolutions": {
"@onflow/sdk": "1.0.1",
"@onflow/types": "1.0.1"
},
"devDependencies": {
"@apollo/rover": "^0.8.1",
"@graphql-codegen/add": "^3.2.0",
"@graphql-codegen/cli": "2.8.1",
"@graphql-codegen/typed-document-node": "^2.3.3",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@types/node": "18.0.1",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"concurrently": "^7.3.0",
"dotenv-cli": "^6.0.0",
"eslint": "8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"keen-slider": "^6.6.2",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"dependenciesComments": {
"chakra/emotion/framer": "Replaceable with other common UI libraries",
"next-auth": "Replaceable with any auth provider that supports OAuth 2.0",
"openid-client": "Replaceable with any OAuth 2.0 client"
}
}