-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
109 lines (109 loc) · 3.48 KB
/
package.json
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
107
108
109
{
"name": "@radixdlt/connector-extension",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18"
},
"authors": [
"Alex Stelea <[email protected]>",
"Dawid Sowa <[email protected]>"
],
"bugs": "https://github.com/radixdlt/connector-extension/issues",
"license": "Apache-2.0",
"scripts": {
"start": "VITE_DEV_TOOLS=true vite",
"start:local": "VITE_DEV_TOOLS=true vite --mode localhost",
"build": "tsc && vite build",
"build:dev": "tsc && VITE_DEV_TOOLS=true vite build",
"build:cd": "./build.sh",
"preview": "vite preview",
"prettier": "prettier --write src",
"lint": "eslint & npm run prettier & tsc",
"prepare": "husky install",
"test": "vitest --reporter=basic",
"test:ci": "vitest run --coverage --sequence.concurrent=false",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui --coverage"
},
"dependencies": {
"@ledgerhq/hw-transport-webhid": "^6.27.19",
"@mui/material": "^5.14.0",
"@noble/curves": "^1.4.0",
"@radixdlt/babylon-gateway-api-sdk": "^1.2.7",
"@radixdlt/radix-connect-webrtc": "1.2.2-csp.1",
"@radixdlt/radix-dapp-toolkit": "2.2.0-dev.10",
"@stitches/react": "^1.2.8",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"bip32": "^2.0.0",
"bip39": "^3.1.0",
"blakejs": "^1.2.1",
"buffer": "^6.0.3",
"ed25519-hd-key": "^1.3.0",
"elliptic": "^6.5.4",
"lodash.chunk": "^4.2.0",
"loglevel": "^1.8.0",
"neverthrow": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-qr-code": "^2.0.8",
"react-router-dom": "^6.21.0",
"react-use": "^17.4.0",
"rxjs": "^7.8.1",
"trpc-chrome": "^1.0.0",
"tslog": "4.8.0",
"valibot": "0.42.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@owlcode/semantic-release-chrome": "1.0.1",
"@saithodev/semantic-release-backmerge": "^3.2.1",
"@semantic-release/exec": "^6.0.3",
"@types/chai": "^4.3.3",
"@types/chrome": "^0.0.241",
"@types/elliptic": "^6.4.14",
"@types/lodash.chunk": "^4.2.7",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/w3c-web-hid": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/ui": "^2.1.5",
"babel-preset-vite": "^1.0.4",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
"eslint": "^8.25.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"prettier": "^3.0.0",
"sass": "^1.69.5",
"semantic-release": "^21.0.7",
"semantic-release-replace-plugin": "^1.2.7",
"typescript": "^5.0.2",
"vite": "^3.2.3",
"vite-compatible-readable-stream": "^3.6.1",
"vite-tsconfig-paths": "^4.0.7",
"vitest": "^2.1.5",
"vitest-chrome": "^0.1.0",
"vitest-mock-extended": "^2.0.2",
"vitest-sonar-reporter": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/radixdlt/connector-extension.git"
}
}