-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.35 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.35 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "locker-ui",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/chainrule-labs/locker-ui.git"
},
"scripts": {
"build": "next build",
"commit": "git-cz",
"dev": "next dev",
"format": "prettier --write .",
"format:check": "prettier --plugin=prettier-plugin-tailwindcss --check .",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky",
"start": "next start",
"test": "jest",
"test:match": "jest --verbose"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@clerk/nextjs": "^5.4.1",
"@clerk/themes": "^2.1.1",
"@headlessui/react": "^1.7.19",
"@highlight-run/next": "^7.5.31",
"@next/third-parties": "^15.0.2",
"@popperjs/core": "^2.11.8",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.2",
"@reown/appkit": "^1.6.2",
"@reown/appkit-adapter-wagmi": "^1.6.2",
"@supabase/ssr": "^0.4.1",
"@supabase/supabase-js": "^2.45.3",
"@tanstack/react-query": "^5.32.1",
"@vercel/analytics": "^1.3.1",
"@zerodev/ecdsa-validator": "^5.4.1",
"@zerodev/permissions": "^5.5.0",
"@zerodev/sdk": "^5.4.9",
"big.js": "^6.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"jsonwebtoken": "^9.0.2",
"lottie-react": "^2.4.0",
"lucide-react": "^0.439.0",
"next": "14.2.3",
"next-pwa": "^5.6.0",
"next-themes": "^0.3.0",
"qrcode.react": "^3.1.0",
"radix-ui": "^1.0.1",
"react": "^18",
"react-blockies": "^1.4.1",
"react-dom": "^18",
"react-icons": "^5.1.0",
"react-minimal-pie-chart": "^8.4.0",
"react-popper": "^2.3.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.18.8",
"wagmi": "^2.14.5"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@next/eslint-plugin-next": "^14.2.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^15.0.7",
"@types/big.js": "^6.2.2",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-blockies": "^1.4.4",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"autoprefixer": "^10.4.19",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}