-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.66 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
{
"name": "Virtualground",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build && next export",
"start": "next start",
"prettier:fix": "prettier './src/**/*.js' --write",
"eslint:fix": "eslint ./src --fix",
"codeStyle:fix": "npm run prettier:fix && npm run eslint:fix",
"clear-all": "rimraf ./node_modules ./.next"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not IE 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.5.2",
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.6",
"@react-three/cannon": "^6.4.0",
"@react-three/drei": "^9.32.0",
"@react-three/fiber": "^8.8.1",
"@walletconnect/web3-provider": "^1.8.0",
"@web3auth/base": "^2.1.2",
"@web3auth/core": "^2.1.2",
"@web3auth/web3auth": "^2.1.2",
"aos": "^2.3.4",
"card-validator": "^8.1.1",
"ethers": "^5.7.1",
"firebase": "^9.10.0",
"firebase-tools": "^11.9.0",
"formik": "^2.2.6",
"jarallax": "^2.0.3",
"next": "^12.3.1",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-countup": "^6.3.1",
"react-dom": "^18.1.0",
"react-gravatar": "^2.6.3",
"react-image-lightbox": "^5.1.4",
"react-lazy-load-image-component": "^1.5.4",
"react-slick": "^0.29.0",
"react-syntax-highlighter": "^15.5.0",
"react-typed": "^1.2.0",
"react-visibility-sensor": "^5.1.1",
"slick-carousel": "^1.8.1",
"three": "^0.144.0",
"valtio": "^1.7.0",
"web3": "^1.8.0",
"web3modal": "^1.9.9",
"yup": "^0.32.11"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^2.0.7",
"cross-env": "^7.0.2",
"eslint": "^8.23.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.0",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.3"
}
}