-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.44 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
{
"name": "libertum-new-design",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:errors": "next lint --quiet",
"prepare": "npx husky install",
"type-check": "tsc --pretty --noEmit",
"preinstall": "npx only-allow pnpm"
},
"lint-staged": {
"!(*config).{js,jsx,ts,tsx}": [
"eslint --fix"
],
"src/**/*.{ts,tsx}": [
"bash -c 'npm run type-check'"
],
"*.json": [
"prettier --write"
],
"*.{css,pcss,scss}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@emailjs/browser": "^3.12.1",
"@ethersproject/bignumber": "^5.7.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.7",
"@next/third-parties": "^14.1.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@splinetool/react-spline": "^4.0.0",
"@thirdweb-dev/chains": "^0.1.116",
"@thirdweb-dev/react": "^4.6.1",
"@thirdweb-dev/sdk": "^4.0.62",
"@transak/transak-sdk": "2.1.2",
"@types/mdx": "^2.0.13",
"axios": "^1.6.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"embla-carousel-autoplay": "^8.1.6",
"embla-carousel-react": "^8.1.6",
"ethers": "^5.7.2",
"framer-motion": "^11.1.7",
"lucide-react": "^0.368.0",
"next": "^14.1.0",
"nodemailer": "^6.9.13",
"pusher-js": "8.4.0-rc2",
"react": "^18",
"react-dom": "^18",
"react-tweet": "^3.2.0",
"remark-gfm": "^4.0.0",
"resend": "^3.2.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5"
}
}