-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.01 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
{
"name": "lc_fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev-ssl": "(local-ssl-proxy --source 8080 --target 3000) & next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"serve": "npx serve out",
"codegen": "graphql-codegen --config codegen.ts",
"prepare": "husky install",
"postinstall": "husky install"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@googlemaps/react-wrapper": "^1.1.35",
"@mui/icons-material": "^5.10.14",
"@mui/lab": "^5.0.0-alpha.108",
"@mui/material": "^5.10.14",
"@mui/styles": "^5.10.14",
"@mui/x-date-pickers": "^5.0.11",
"@react-oauth/google": "^0.5.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@web3modal/ethereum": "^2.0.0-beta.10",
"@web3modal/react": "^2.0.0-beta.10",
"animejs": "^3.2.1",
"axios": "^1.2.1",
"bignumber.js": "^9.1.0",
"date-fns": "^2.29.3",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"ethers": "^5.7.2",
"fast-equals": "^4.0.3",
"fbemitter": "^3.0.0",
"file-saver": "^2.0.5",
"framer-motion": "^7.6.7",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.2",
"he": "^1.2.0",
"lodash": "^4.17.21",
"mobx": "^6.7.0",
"mobx-react-lite": "^3.4.0",
"moment": "^2.29.4",
"next": "13.0.3",
"next-pwa": "^5.6.0",
"notistack": "^2.0.8",
"parallax-js": "^3.1.0",
"password-validator": "^5.3.0",
"photoswipe": "^5.3.4",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "18.2.0",
"react-facebook-login": "^4.1.1",
"react-hook-form": "^7.39.4",
"react-infinite-scroll-component": "^6.1.0",
"react-intersection-observer": "^9.4.1",
"react-photoswipe-gallery": "^2.2.2",
"react-qr-reader": "^3.0.0-beta-1",
"react-secure-storage": "^1.0.21",
"react-use": "^17.4.0",
"swiper": "^8.4.5",
"wagmi": "^0.9.5"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.12",
"@graphql-codegen/client-preset": "1.1.4",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typescript": "^2.8.2",
"@graphql-codegen/typescript-operations": "^2.5.7",
"@graphql-codegen/typescript-react-apollo": "^3.3.6",
"@types/animejs": "^3.1.6",
"@types/fbemitter": "^2.0.32",
"@types/google.maps": "^3.51.0",
"@types/he": "^1.1.2",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"local-ssl-proxy": "^1.3.0",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"string-replace-loader": "^3.1.0",
"typescript": "4.9.3"
}
}