-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.23 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
{
"homepage": "https://cyberspacepirates.github.io/bitcoin-lottery",
"name": "bitcoin-lottery",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"rust-build": "cargo build --manifest-path ./bitcoinrust/Cargo.toml; wasm-pack build ./bitcoinrust/ --target=web --out-dir ../src/wasm-bitcoin",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"bitcoinjs-lib": "^6.1.6",
"ecpair": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tiny-secp256k1": "^2.2.3"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"gh-pages": "^6.1.1",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-top-level-await": "^1.4.2",
"vite-plugin-wasm": "^3.3.0"
}
}