-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.13 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
{
"name": "dead-mans-switch-react",
"version": "1.0.0",
"description": "A Solana-based Dead Man's Switch dApp with encrypted secrets - React Version",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "serve -s dist -l 3000",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test:dms": "node test-dms.js",
"test:fixes": "node test-fixes.js"
},
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@lit-protocol/auth-helpers": "^7.2.1",
"@lit-protocol/constants": "^7.2.1",
"@lit-protocol/contracts-sdk": "^7.2.1",
"@lit-protocol/encryption": "^7.2.1",
"@lit-protocol/lit-node-client": "^7.2.1",
"@solana/spl-token": "^0.4.13",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-phantom": "^0.9.24",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/wallet-adapter-solflare": "^0.6.28",
"@solana/wallet-adapter-wallets": "^0.19.32",
"@solana/web3.js": "^1.98.2",
"bs58": "^6.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.5.0",
"react-router-dom": "^6.30.1",
"serve": "^14.2.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bn.js": "^5.2.0",
"@types/node": "^24.1.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"keywords": [
"solana",
"blockchain",
"dapp",
"encryption",
"dead-mans-switch",
"anchor",
"react"
],
"author": "Your Name",
"license": "MIT"
}