-
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.67 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.67 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": "dimo-developer-console",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "npm run lint",
"build": "next build",
"predev": "npm run compile",
"dev": "next dev",
"sec": "next dev --experimental-https",
"lint": "eslint . --fix --quiet",
"lint:format": "prettier . --check --log-level warn --write \"./**/*.{js,ts,css,md,json,tsx}\"",
"start": "next start",
"test": "jest",
"test:update-snap": "jest -u",
"test:watch": "jest --watch",
"compile": "graphql-codegen --config src/codegen.ts",
"prepare": "husky"
},
"dependencies": {
"@apollo/client": "^3.14.0",
"@base-ui/react": "^1.5.0",
"@dimo-network/data-sdk": "^1.4.0",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@maticnetwork/maticjs": "^3.9.6",
"@maticnetwork/maticjs-web3": "^1.0.5",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-switch": "^1.2.6",
"@sentry/nextjs": "^8.55.0",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-table": "^8.21.3",
"@turnkey/crypto": "^2.3.1",
"@turnkey/ethers": "^1.3.18",
"@turnkey/http": "^2.14.2",
"@turnkey/sdk-react": "^1.1.2",
"@turnkey/viem": "^0.6.18",
"@zerodev/ecdsa-validator": "^5.4.9",
"@zerodev/sdk": "^5.5.10",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cookies-next": "^5.1.0",
"encoding": "^0.1.13",
"file-saver": "^2.0.5",
"googleapis": "^140.0.1",
"graphql": "^16.12.0",
"jose": "^6.1.3",
"jwt-decode": "^4.0.0",
"lodash": "^4.18.1",
"lucide-react": "^1.16.0",
"maskdata": "^1.3.4",
"mixpanel-browser": "^2.72.0",
"next": "^15.5.8",
"next-themes": "^0.4.6",
"papaparse": "^5.5.3",
"pino-pretty": "^11.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-easy-crop": "^5.5.0",
"react-hook-form": "^7.68.0",
"react-syntax-highlighter": "^15.6.6",
"shadcn": "^4.8.2",
"simple-icons": "^16.12.0",
"siwe": "^2.3.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"validator": "^13.15.23",
"wagmi": "^2.19.5",
"web3": "^4.16.0"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.24.0",
"@graphql-codegen/cli": "^6.2.1",
"@graphql-codegen/client-preset": "^5.2.4",
"@graphql-typed-document-node/core": "^3.2.0",
"@tanstack/eslint-plugin-query": "^5.91.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^15.0.7",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.21",
"@types/mixpanel-browser": "^2.60.0",
"@types/node": "^20.19.26",
"@types/papaparse": "^5.5.1",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/validator": "^13.15.10",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-config-next": "^15.5.8",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nock": "^13.5.6",
"postcss": "^8.5.6",
"postcss-nesting": "^12.1.5",
"prettier": "^3.7.4",
"tailwindcss": "^3.4.19",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0"
},
"overrides": {
"eslint": "$eslint"
}
}