-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 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
{
"name": "dust",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "bunx prettier . --write",
"lint": "bunx eslint . --ext .ts,.tsx",
"prepare": "husky",
"test": "bun x vitest",
"test:watch": "bun x vitest --watch",
"test:coverage": "bun x vitest run --coverage"
},
"dependencies": {
"@chakra-ui/react": "^3.15.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@noble/hashes": "^1.8.0",
"@reown/appkit": "^1.7.1",
"@reown/appkit-adapter-wagmi": "^1.7.1",
"@tanstack/react-query": "^5.71.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@wagmi/core": "^2.16.7",
"dotenv": "^16.5.0",
"ethers": "^6.13.5",
"framer-motion": "^12.6.3",
"jsdom": "^26.1.0",
"next": "15.2.4",
"next-themes": "^0.4.6",
"path-to-regexp": "^8.2.0",
"pino-pretty": "^13.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"typescript-eslint": "^8.29.1",
"viem": "^2.26.3",
"vitest": "0.25.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.8",
"@eslint/eslintrc": "^3",
"@graphprotocol/graph-ts": "^0.38.0",
"@next/eslint-plugin-next": "^15.2.4",
"@tanstack/eslint-plugin-query": "^5.72.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitest/coverage-c8": "^0.33.0",
"eslint": "^9.24.0",
"eslint-config-next": "15.2.4",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-cyrillic-string": "^1.0.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"typescript": "^5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{ts,tsx}": "vitest run --passWithNoTests"
}
}