-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.25 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.25 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
{
"name": "miden-web-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"build:bank-account": "cd contracts/bank-account && miden build --release && cp ../target/miden/release/bank_account.masp ../../public/packages/bank_account.masp",
"build:deposit-note": "cd contracts/deposit-note && miden build --release && cp ../target/miden/release/deposit_note.masp ../../public/packages/deposit_note.masp",
"build:withdraw-request-note": "cd contracts/withdraw-request-note && miden build --release && cp ../target/miden/release/withdraw_request_note.masp ../../public/packages/withdraw_request_note.masp",
"build:init-tx-script": "cd contracts/init-tx-script && miden build --release && cp ../target/miden/release/init_tx_script.masp ../../public/packages/init_tx_script.masp",
"build:contracts": "pnpm build:bank-account && pnpm build:deposit-note && pnpm build:withdraw-request-note && pnpm build:init-tx-script"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.5",
"@miden-sdk/miden-sdk": "0.13.1",
"@miden-sdk/miden-wallet-adapter": "0.13.2",
"@miden-sdk/react": "0.13.1",
"@tailwindcss/vite": "^4.1.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.576.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"shadcn": "^3.8.5",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0"
},
"peerDependencies": {
"@miden-sdk/miden-wallet-adapter-miden": "0.13.2",
"@miden-sdk/miden-wallet-adapter-react": "0.13.2",
"@miden-sdk/miden-wallet-adapter-reactui": "0.13.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^25.3.0",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.1",
"globals": "^17.3.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4"
}
}