-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.42 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.42 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
81
{
"author": {
"name": "Dusk Network B.V.",
"url": "https://dusk.network/",
"mail": "info@dusk.network"
},
"bugs": "https://github.com/dusk-network/explorer/issues",
"engines": {
"node": "^24.0.0"
},
"homepage": "https://github.com/dusk-network/explorer",
"license": "MPL-2.0",
"name": "explorer",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/dusk-network/explorer.git"
},
"scripts": {
"build": "vite build",
"checks": "svelte-kit sync && npm run format && npm run lint && npm run typecheck && npm test",
"dev": "vite dev",
"dev:host": "vite dev --host",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage.enabled",
"test:watch": "vitest",
"typecheck": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --fail-on-warnings",
"typecheck:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch --fail-on-warnings"
},
"type": "module",
"version": "1.6.0",
"overrides": {
"cookie": "0.7.2"
},
"dependencies": {
"@floating-ui/dom": "1.7.6",
"@mdi/js": "7.4.47",
"d3-geo": "3.1.1",
"d3-scale": "4.0.2",
"lamb": "0.61.1"
},
"devDependencies": {
"@dusk-network/eslint-config": "4.0.1",
"@dusk-network/prettier-config": "1.1.0",
"@eslint/js": "9.39.4",
"@juggle/resize-observer": "3.4.0",
"@sveltejs/adapter-static": "3.0.10",
"@sveltejs/kit": "2.55.0",
"@sveltejs/vite-plugin-svelte": "7.0.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/svelte": "5.3.1",
"@types/d3-geo": "3.1.0",
"@types/node": "25.5.0",
"@vitest/browser": "4.1.0",
"@vitest/coverage-istanbul": "4.1.0",
"autoprefixer": "10.4.27",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-svelte": "3.16.0",
"globals": "17.4.0",
"jsdom": "29.0.1",
"jsdom-worker": "0.3.0",
"lamb-types": "0.61.16",
"postcss-nested": "7.0.2",
"prettier": "3.8.1",
"prettier-plugin-svelte": "3.5.1",
"svelte": "5.54.1",
"svelte-check": "4.4.5",
"svelte-preprocess": "6.0.3",
"typescript": "5.9.3",
"vite": "8.0.1",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.0"
}
}