This repository was archived by the owner on Apr 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.87 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.87 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
{
"name": "verax-tutorial",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:check": "npm run lint && npm run prettier:check",
"prettier:check": "prettier --check \"**/*.{json,md,js,ts,jsx,tsx}\"",
"prettier:write": "prettier --write \"**/*.{json,md,js,ts,jsx,tsx}\"",
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/react-fontawesome": "^0.2.3",
"@lens-protocol/widgets-react": "^2.1.0",
"@reown/appkit": "^1.7.16",
"@reown/appkit-adapter-wagmi": "^1.7.16",
"@tanstack/react-query": "^5.83.0",
"@verax-attestation-registry/verax-sdk": "^2.4.0",
"react": "19.1.4",
"react-dom": "19.1.4",
"react-json-view-lite": "^2.4.1",
"viem": "^2.33.1",
"vite": "^7.1.11",
"vite-plugin-radar": "^0.10.1",
"wagmi": "^2.18.1"
},
"devDependencies": {
"@eslint/compat": "^1.3.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.4",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
},
"overrides": {
"react": "19.1.4",
"react-dom": "19.1.4",
"use-sync-external-store": "^1.4.0"
}
}