-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.71 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "freewallet",
"version": "0.42.0",
"type": "module",
"scripts": {
"prepare": "mkdir -p public/js && cp node_modules/credential-handler-polyfill/dist/* public/js/ && cp node_modules/web-credential-handler/dist/* public/js/",
"start": "npx serve dist/ --cors",
"dev": "vite --cors",
"build": "tsc -p tsconfig.app.json && vite build",
"typecheck": "tsc -p tsconfig.app.json",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\" \"tests/**/*.ts\" \"*.md\"",
"check": "prettier --check \"src/**/*.{ts,tsx,css,json}\"",
"fix": "pnpm run lint:fix && pnpm run format",
"test": "pnpm run fix && pnpm run test:unit && pnpm run test:e2e",
"test:unit": "vitest run",
"test:conformance": "vitest run --config vitest.conformance.config.ts",
"test:e2e": "playwright test",
"test:e2e:was": "playwright test --config playwright.was.config.ts"
},
"packageManager": "pnpm@11.20.0",
"engines": {
"node": ">=24"
},
"dependencies": {
"@digitalcredentials/issuer-registry-client": "^4.1.0",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource-variable/inter": "^5.3.0",
"@interop/data-integrity-core": "^8.7.1",
"@interop/data-integrity-proof": "^3.4.5",
"@interop/did-method-webvh": "^5.6.1",
"@interop/ed25519-signature": "^7.2.0",
"@interop/ed25519-verification-key": "^8.0.4",
"@interop/ezcap": "^7.4.5",
"@interop/http-client": "^1.0.5",
"@interop/logger": "^0.2.0",
"@interop/security-document-loader": "^10.0.4",
"@interop/social-core": "^0.8.1",
"@interop/storage-core": "^0.9.1",
"@interop/vc": "^11.0.7",
"@interop/vc-display": "^0.1.0",
"@interop/verifier-core": "^3.5.5",
"@interop/vh-resource-log": "^0.4.1",
"@interop/wallet-core": "^0.62.0",
"@interop/was-client": "^0.46.1",
"@interop/webkms-client": "^14.7.4",
"@interop/x25519-key-agreement-key": "^5.2.2",
"@mui/lab": "9.0.0-beta.8",
"@mui/material": "^9.3.1",
"@noble/ciphers": "^2.3.0",
"@playwright/test": "^1.62.1",
"@scure/base": "^2.3.0",
"@zxcvbn-ts/core": "^4.1.2",
"@zxcvbn-ts/language-common": "^4.1.3",
"@zxcvbn-ts/language-en": "^4.1.1",
"@zxcvbn-ts/language-es-es": "^4.1.2",
"byoe-context": "^0.5.0",
"credential-handler-polyfill": "^4.1.0",
"fuse.js": "^7.5.0",
"i18next": "^26.3.6",
"json-canonicalize": "^3.0.0",
"nanotar": "^0.3.0",
"prism-react-renderer": "^2.4.1",
"qr-scanner": "^1.4.2",
"qrcode.react": "^4.2.0",
"query-string": "^9.5.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-i18next": "^17.0.11",
"react-icons": "^5.7.0",
"react-markdown": "^10.1.0",
"react-router": "^8.3.0",
"remark-gfm": "^4.0.1",
"rxdb": "^17.4.0",
"uuidv7": "^1.2.1",
"web-credential-handler": "^3.0.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.9.0",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"serve": "^14.2.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.1",
"vitest": "^4.1.10"
}
}