-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.83 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
{
"name": "explore-dig-net",
"version": "0.7.0",
"private": true,
"type": "module",
"description": "explore.dig.net — the curated dApp store for the DIG Network / Chia ecosystem",
"scripts": {
"dev": "node scripts/build-catalog.mjs && vite",
"build": "node scripts/build-catalog.mjs && tsc -b && vite build && node scripts/prerender-apps.mjs && node scripts/check-dist.mjs",
"preview": "vite preview",
"typecheck": "node scripts/build-catalog.mjs && tsc -b --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate:apps": "node scripts/validate-apps.mjs",
"test": "node scripts/build-catalog.mjs && vitest run",
"test:watch": "vitest",
"test:coverage": "node scripts/build-catalog.mjs && vitest run --coverage",
"test:a11y": "playwright test"
},
"dependencies": {
"@dignetwork/components": "^0.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intl": "^6.8.9"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.2.6",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-testing-library": "^7.1.1",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"prettier": "^3.9.6",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vitest": "^3.2.6"
}
}