-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.64 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
{
"name": "fe_defrost",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"prepare": "husky",
"typechain": "typechain --target ethers-v6 --out-dir ./app/types/typechain ./abi/*.json",
"prisma:refresh-schema": "prisma db pull && prisma generate"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@prisma/client": "^6.6.0",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-tabs": "^1.1.9",
"@radix-ui/react-tooltip": "^1.2.0",
"@react-spring/parallax": "^9.7.5",
"@react-spring/web": "^9.7.5",
"@reown/appkit": "^1.7.2",
"@reown/appkit-adapter-wagmi": "^1.7.2",
"@reown/appkit-siwe": "^1.7.13",
"@splidejs/react-splide": "^0.7.12",
"@splidejs/splide": "^4.1.4",
"@splinetool/react-spline": "^4.0.0",
"@tabler/icons-react": "^3.31.0",
"@tanstack/react-query": "^5.74.3",
"apexcharts": "^4.5.0",
"axios": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ethers": "^6.13.5",
"framer-motion": "^12.5.0",
"gsap": "^3.12.7",
"lucide-react": "^0.475.0",
"motion": "^12.5.0",
"next": "13.5.8",
"next-view-transitions": "^0.3.4",
"ogl": "^1.0.11",
"pino-pretty": "^13.0.0",
"prisma": "^6.6.0",
"react": "^18.3.1",
"react-apexcharts": "^1.7.0",
"react-dom": "^18.3.1",
"react-scroll-parallax": "^3.4.5",
"react-toastify": "^11.0.5",
"sharp": "^0.34.3",
"siwe": "^3.0.0",
"superjson": "^2.2.2",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"viem": "^2.27.0",
"wagmi": "^2.14.16",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/decimal.js": "^7.4.3",
"@types/node": "^20.17.24",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.21",
"decimal.js": "^10.5.0",
"eslint": "^8.57.1",
"eslint-config-next": "13.5.8",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"typechain": "^8.3.2",
"typescript": "^5.8.2"
},
"packageManager": "pnpm@10.4.0+sha512.6b849d0787d97f8f4e1f03a9b8ff8f038e79e153d6f11ae539ae7c435ff9e796df6a862c991502695c7f9e8fac8aeafc1ac5a8dab47e36148d183832d886dd52"
}