-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.82 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.82 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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "arkade",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@arkade-os/boltz-swap": "0.3.17",
"@arkade-os/sdk": "0.4.16",
"@branta-ops/branta": "0.0.9",
"@ionic/react": "^8.5.6",
"@lendasat/lendasat-wallet-bridge": "^0.0.90",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "3.0.0",
"@scure/base": "2.0.0",
"@scure/bip32": "2.0.0",
"@scure/bip39": "2.0.0",
"@scure/btc-signer": "2.0.1",
"@sentry/react": "^9.15.0",
"@tanstack/react-virtual": "^3.13.19",
"decimal.js": "^10.5.0",
"dompurify": "^3.3.3",
"framer-motion": "^12.34.3",
"light-bolt11-decoder": "^3.2.0",
"lucide-react": "^0.575.0",
"nostr-tools": "^2.12.0",
"qr": "^0.5.2",
"qr-scanner": "^1.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"scripts": {
"prepare": "husky install",
"start": "pnpm git-info && pnpm build:worker && vite",
"start:mainnet": "pnpm git-info && pnpm build:worker && cross-env VITE_ARK_SERVER=https://arkade.computer VITE_BOLTZ_URL=https://api.ark.boltz.exchange vite",
"build": "pnpm git-info && pnpm build:worker && vite build",
"build:worker": "vite build -c vite.worker.config.ts",
"test": "vitest run",
"test:ui": "vitest run --ui",
"test:unit": "vitest run --exclude '**/e2e/**'",
"test:coverage": "vitest run --coverage",
"test:e2e": "VITE_NOSTR_RELAY_URL=http://localhost:10547 playwright test",
"test:e2e:ui": "VITE_NOSTR_RELAY_URL=http://localhost:10547 playwright test --ui",
"test:codegen": "playwright codegen localhost:3002",
"lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx,js,jsx}' --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"git-info": "node scripts/git-commit-info.js",
"regtest:start": "./regtest/start-env.sh && docker compose -f docker-compose.nak.yml up -d",
"regtest:stop": "./regtest/stop-env.sh && docker compose -f docker-compose.nak.yml down",
"regtest:clean": "./regtest/clean-env.sh && docker compose -f docker-compose.nak.yml down -v",
"regtest:setup": "node src/test/setup.mjs"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.1.0",
"@types/react": "^18.3.21",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitejs/plugin-basic-ssl": "^2.1.4",
"@vitejs/plugin-react": "^5.0.2",
"baseline-browser-mapping": "^2.10.0",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eventsource": "^4.1.0",
"globals": "^16.3.0",
"husky": "^8.0.3",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vite": "^7.1.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mkcert": "^1.17.9",
"vitest": "^3.2.4",
"vitest-fetch-mock": "^0.4.5"
},
"packageManager": "pnpm@10.25.0",
"engines": {
"node": ">=20.19.0 || >=22.12.0",
"pnpm": ">=8"
},
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild"
],
"onlyBuiltDependencies": [
"@arkade-os/sdk"
]
}
}