-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·79 lines (79 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·79 lines (79 loc) · 2.29 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
{
"name": "v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=\"--max-old-space-size=4096\" next dev --port=3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"graph-build": "graphclient build && cpx \"./.graphclient/**/*\" ./src/graphclient --clean && rm -rf .graphclient",
"export": "next export"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@next/third-parties": "^14.2.4",
"@nextui-org/react": "^2.4.2",
"@reduxjs/toolkit": "^2.2.7",
"@reown/appkit": "^1.6.7",
"@reown/appkit-adapter-wagmi": "^1.6.2",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-virtual": "^3.8.1",
"clsx": "^2.1.1",
"cpx": "^1.5.0",
"encoding": "^0.1.13",
"ethers": "^6.13.2",
"framer-motion": "^11.2.12",
"graphql": "^16.9.0",
"jsonrepair": "^3.8.0",
"lucide-react": "^0.400.0",
"moment": "^2.30.1",
"next": "14.2.4",
"next-pwa": "^5.6.0",
"pino-pretty": "^11.2.1",
"react": "^18",
"react-dom": "^18",
"react-moment": "^1.1.3",
"react-query-kit": "^3.3.0",
"react-redux": "^9.1.2",
"redux-persist": "^6.0.0",
"sharp": "^0.33.5",
"three": "^0.174.0",
"three-js": "^79.0.0",
"viem": "^2.21.19",
"wagmi": "^2.12.17"
},
"devDependencies": {
"@graphprotocol/client-cli": "^3.0.6",
"@tanstack/eslint-plugin-query": "^5.49.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/redux-persist": "^4.3.1",
"@types/three": "^0.174.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-plugin-deprecation": "^3.0.0",
"lint-staged": "^15.2.7",
"postcss": "^8",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*{.json,.css,.yml}": [
"prettier --write"
]
}
}