-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nuxt-app",
"private": true,
"type": "module",
"packageManager": "npm@11.10.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"parity:compare": "node scripts/parity-compare.mjs",
"parity:full": "node scripts/parity-compare.mjs --scenarios tests/parity/full-run.scenarios.json --rate-limit-retries 3",
"parity:links": "node scripts/parity-links.mjs",
"parity:sdk-diagnostics": "node scripts/parity-sdk-diagnostics.mjs",
"parity:public-endpoints": "node scripts/public-endpoint-parity.mjs",
"parity:overlay": "node scripts/parity-overlay.mjs",
"execution:record": "node scripts/execution-record.mjs",
"execution:suite": "node scripts/execution-suite.mjs",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "nuxt typecheck",
"postinstall": "nuxt prepare && simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,vue,js,mjs,mts}": [
"eslint --fix"
]
},
"dependencies": {
"@eulerxyz/euler-v2-sdk": "1.0.9",
"@floating-ui/vue": "2.0.0",
"@gvade/nuxt3-svg-sprite": "1.0.3",
"@keyringnetwork/keyring-connect-sdk": "3.2.0",
"@nuxt/eslint": "1.16.0",
"@reown/appkit": "1.8.20",
"@reown/appkit-adapter-wagmi": "1.8.20",
"@tanstack/query-core": "5.101.0",
"@tanstack/vue-query": "5.101.0",
"@vueuse/nuxt": "14.3.0",
"@wagmi/core": "3.5.0",
"@wagmi/vue": "0.5.17",
"axios": "1.18.0",
"chart.js": "4.5.1",
"chartjs-plugin-annotation": "3.1.0",
"luxon": "3.7.2",
"modern-normalize": "3.0.1",
"nuxt": "4.4.8",
"pino": "10.3.1",
"viem": "2.52.2",
"vue": "3.5.38",
"vue-chartjs": "5.3.3",
"vue-router": "5.1.0",
"wagmi": "3.6.16"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "6.14.0",
"@types/luxon": "3.7.1",
"@types/node": "25.9.3",
"eslint": "9.39.4",
"lint-staged": "17.0.7",
"playwright": "1.60.0",
"sass": "1.101.0",
"simple-git-hooks": "2.13.1",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"vitest": "4.1.9",
"vue-tsc": "3.3.5"
},
"overrides": {
"@wagmi/connectors": "8.0.15",
"serialize-javascript": "7.0.4",
"unhead": "2.1.12"
},
"license": "MIT"
}