-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "google-implicit-example",
"version": "0.1.0",
"private": true,
"dependencies": {
"@tanstack/react-query": "^5.37.1",
"@web3auth/modal": "^10.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"wagmi": "^2.14.16"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"buffer": "^6.0.3",
"process": "^0.11.10",
"typescript": "^5.5.4",
"vite": "^5.4.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint"
}
}