-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 917 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 917 Bytes
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
{
"name": "swap-master",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"server": "cd ../server && npm run start:dev",
"foundry": "cd ../foundry && anvil",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test"
},
"dependencies": {
"@tanstack/react-query": "^5.80.6",
"ethers": "^6",
"next": "^15.3.3",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"thirdweb": "^5.102.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^24.0.0",
"@types/react": "^18.3.23",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.3",
"jest": "^29.7.0",
"pino-pretty": "^13.0.0",
"tailwindcss": "^4",
"typechain": "^8.3.2",
"typescript": "^5.8.3"
}
}