-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.65 KB
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
104
105
106
107
108
109
110
{
"name": "client-comosus",
"version": "0.1.0",
"private": true,
"scripts": {
"codegen": "graphql-codegen --config codegen.yml -r dotenv-expand/config",
"dev": "next dev",
"build": "next build",
"build:with-codegen": "npm run codegen && npm run build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"e2e": "cypress run",
"e2e:record": "cypress run --record",
"e2e:start-server": "start-server-and-test dev 3000 e2e",
"e2e:start-server:record": "start-server-and-test start 3000 e2e:record",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@alch/alchemy-web3": "^1.4.6",
"@chakra-ui/react": "1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/black-han-sans": "^4.5.7",
"@fontsource/blinker": "^4.5.8",
"@fontsource/montserrat": "^4.5.10",
"@fontsource/nanum-brush-script": "^4.5.8",
"@hookform/resolvers": "^2.8.10",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"axios": "^0.27.2",
"framer-motion": "^6",
"graphql": "^16.5.0",
"graphql-request": "^4.2.0",
"i18next": "^21.8.3",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.1",
"lodash": "^4.17.21",
"logrocket": "^3.0.1",
"next": "12.1.6",
"ni18n": "^1.0.5",
"qrcode.react": "^3.1.0",
"react": "18.1.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "18.1.0",
"react-google-recaptcha": "^2.1.0",
"react-hook-form": "^7.31.2",
"react-i18next": "^11.16.9",
"react-icons": "^4.3.1",
"react-player": "^2.10.1",
"react-query": "^3.39.0",
"styled-components": "^5.3.5",
"web3": "^1.7.4",
"yup": "^0.32.11",
"zustand": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@chakra-ui/storybook-addon": "^4.0.4",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/typescript": "2.4.11",
"@graphql-codegen/typescript-operations": "2.4.0",
"@graphql-codegen/typescript-react-query": "^3.5.12",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/axios": "^0.14.0",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.31",
"@types/react": "18.0.9",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "18.0.3",
"@types/react-google-recaptcha": "^2.1.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-loader": "^8.2.5",
"cypress": "^10.0.2",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"electron": "^20.0.3",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.6.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"sass": "^1.52.3",
"sass-loader": "10.1.1",
"serverless": "^2.72.2",
"start-server-and-test": "^1.14.0",
"storybook-addon-next-router": "^4.0.0",
"storybook-react-i18next": "^1.1.2",
"ts-jest": "^28.0.2",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.6.4"
}
}