-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.46 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
{
"name": "@quest-chains/dapp",
"version": "0.1.0",
"license": "GPL-3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc",
"lint": "eslint --ignore-path .gitignore \"*/**/*.{js,jsx,ts,tsx}\" --fix",
"format": "prettier --write \"{*,**/*}.{ts,tsx,js,jsx,json,yml,yaml,md,css,scss,sol}\"",
"prepare": "patch-package && husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.9",
"@chakra-ui/react": "^2.5.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@next/bundle-analyzer": "^13.2.4",
"@quest-chains/sdk": "^0.2.12",
"@react-three/drei": "9.26.1",
"@react-three/fiber": "8.7.1",
"@walletconnect/web3-provider": "^1.8.0",
"chakra-ui-markdown-renderer": "^4.1.0",
"color": "^4.2.3",
"ethers": "5.7.2",
"fast-memoize": "^2.5.2",
"framer-motion": "^10.0.1",
"html2canvas": "^1.4.1",
"js-base64": "^3.7.5",
"mersenne-twister": "^1.1.0",
"mongodb": "^5.1.0",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.2",
"react-hot-toast": "^2.3.0",
"react-hotjar": "^5.4.1",
"react-markdown": "^8.0.3",
"react-markdown-editor-lite": "^1.3.3",
"react-medium-image-zoom": "^5.1.3",
"react-select": "^5.7.0",
"react-share": "^4.4.1",
"remark-gfm": "^3.0.1",
"remove-markdown": "^0.5.0",
"sass": "^1.58.3",
"three": "^0.144.0",
"urql": "^3.0.3",
"uuid": "^9.0.0",
"web3modal": "^1.9.9"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.2.3",
"@types/color": "^3.0.3",
"@types/mersenne-twister": "^1.1.2",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/remove-markdown": "^0.3.1",
"@types/three": "^0.144.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"patch-package": "^6.4.7",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
}
}