forked from FastLane-Labs/fastlane-online-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.18 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
{
"name": "app",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"test": "jest --transformIgnorePatterns \"node_modules/(?!wagmi)/\" --config jest.config.ts",
"start": "next start",
"lint": "next lint --fix",
"lint:check": "next lint",
"prettier": "prettier './src' --write",
"wagmi": "wagmi generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src": [
"lint",
"prettier"
]
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@rainbow-me/rainbowkit": "^2.1.3",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query": "^5.29.0",
"@wagmi/cli": "^2.1.15",
"axios": "^1.7.2",
"dayjs": "^1.11.10",
"ethers": "^6.13.0",
"ethers-multicall-provider": "^6.4.0",
"next": "^14.1.4",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-icons": "^4.11.0",
"react-toastify": "^10.0.5",
"react-use": "^17.5.1",
"siwe": "^2.1.4",
"viem": "^2.9.15",
"wagmi": "^2.5.19"
},
"devDependencies": {
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@cloudflare/next-on-pages": "^1.12.1",
"@cloudflare/workers-types": "^4.20240722.0",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@tsconfig/next": "^2.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/secp256k1": "^4.0.6",
"autoprefixer": "^10.0.1",
"babel-jest": "^29.7.0",
"daisyui": "^4.10.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-next-on-pages": "^1.12.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5",
"vercel": "^35.1.0"
}
}