-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.72 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
{
"name": "web3mail-usecase-demo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:no-cache": "vite --force",
"build": "vite build",
"check-types": "tsc --noEmit",
"check-format": "prettier --check src",
"format": "prettier --write src",
"lint": "eslint .",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:local": "cross-env BASE_URL=http://localhost:5173 npm run cypress:run -- --config chromeWebSecurity=false",
"test:dev": "cross-env BASE_URL=https://dev-web3mail.iex.ec/protectedData npm run cypress:run",
"test:open-prod": "cross-env BASE_URL=https://web3mail.iex.ec/protectedData npm run cypress:open",
"test:open-local": "cross-env BASE_URL=http://localhost:5173 npm run cypress:open -- --config chromeWebSecurity=false"
},
"dependencies": {
"@download/blockies": "^1.0.3",
"@fontsource/space-mono": "^5.0.20",
"@iexec/dataprotector": "^2.0.0-beta.10",
"@iexec/web3mail": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.1.2",
"@rollbar/react": "^0.12.0-beta",
"@tanstack/react-query": "^5.51.11",
"@vercel/analytics": "^1.2.2",
"@web3modal/wagmi": "^5.1.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"ethers": "^6.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-router-dom": "^6.9.0",
"rollbar": "^2.26.4",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"wagmi": "^2.12.11",
"zustand": "^4.5.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.12",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"cypress": "^12.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^3.4.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^1.0.4",
"postcss": "^8.4.40",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"rollup-plugin-visualizer": "^5.9.2",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11"
}
}