-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.74 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
{
"name": "deposit-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm-run-all build:*",
"build:hardhat": "cd hardhat && npm install",
"build:envio": "cd envio && npm run codegen",
"build:root": "next build",
"start": "next start",
"lint": "next lint",
"update-deposits": "node ./scripts/update-deposits.mjs",
"start-test-env": "cross-env NEXT_PUBLIC_TEST_ENV=test next dev -p 3000",
"start-hardhat-node": "cd hardhat && npx hardhat node",
"run-playwright": "playwright test playwright.config.ts tests/",
"run-e2e-tests": "concurrently --kill-others --success first \"npm run start-test-env\" \"npm run start-hardhat-node\" \"npm run run-playwright\""
},
"dependencies": {
"@apollo/client": "^3.11.4",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.3",
"@tanstack/react-query": "^5.29.0",
"@tenkeylabs/dappwright": "^2.8.4",
"encoding": "^0.1.13",
"envio": "^2.3.2",
"ethers": "^5.4.4",
"graphql": "^16.9.0",
"next": "14.1.4",
"p-queue": "^8.0.1",
"pino-pretty": "^11.0.0",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"viem": "^2.9.15",
"wagmi": "^2.5.19"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@playwright/test": "^1.44.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"hardhat": "^2.22.7",
"npm-run-all": "^4.1.5",
"playwright": "^1.45.3",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}