-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.11 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
{
"name": "v2.1-interface",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "NODE_ENV=production next build",
"bundle:analyze": "NODE_ENV=production ANALYZE=true next build",
"dev": "next dev",
"export": "NODE_ENV=production next export",
"lint": "next lint",
"format": "next lint --fix",
"start": "next start",
"test": "vitest",
"test:e2e": "npx playwright test",
"test:e2e-debug": "DEBUG=console npx playwright test --debug",
"ts": "tsc --noEmit --incremental",
"ts:watch": "yarn ts --watch"
},
"dependencies": {
"@next/font": "13.1.6",
"@openzeppelin/test-helpers": "^0.5.16",
"@radix-ui/react-accordion": "^1.1.0",
"@radix-ui/react-checkbox": "^1.0.2",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-icons": "^1.2.0",
"@radix-ui/react-radio-group": "^1.1.1",
"@radix-ui/react-select": "^1.2.0",
"@rainbow-me/rainbowkit": "^0.8.1",
"@tanstack/react-table": "^8.7.9",
"clsx": "^1.2.1",
"ethers": "^5.7.2",
"next": "13.1.6",
"nft.storage": "^7.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.1",
"react-jazzicon": "^1.0.4",
"react-query": "^3.39.3",
"tailwind-merge": "^1.9.1",
"wagmi": "^0.11.5",
"zustand": "^4.3.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.1.6",
"@playwright/test": "^1.30.0",
"@testing-library/react": "^13.4.0",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-next": "13.1.6",
"eslint-plugin-playwright": "^0.12.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testing-library": "^5.10.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"jsdom": "^21.1.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
"vitest": "^0.28.4"
}
}