-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 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
{
"name": "dlc-btc-website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"localhost": "vite --mode localhost",
"devnet": "vite --mode devnet",
"testnet": "vite --mode testnet",
"mainnet": "vite --mode mainnet",
"build": "tsc && vite build",
"lint": "concurrently -g 'yarn lint:prettier' 'yarn lint:unused-exports' 'yarn run lint:eslint' 'yarn run lint:filename'",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:filename": "ls-lint",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint:prettier": "prettier --check \"{src,tests}/**/*.{ts,tsx}\" \"*.{js,json}\"",
"lint:prettier:fix": "prettier --write \"{src,tests}/**/*.{ts,tsx}\" *.js",
"lint:unused-exports": "ts-unused-exports tsconfig.json",
"typecheck": "tsc --noEmit",
"test:unit": "VITE_APP_ENVIRONMENT=devnet VITE_ETHEREUM_DEPLOYMENT_BRANCH=dev VITE_ARBITRUM_OBSERVER_NODE=wss://sepolia-rollup.arbitrum.io/rpc,https://sepolia-rollup.arbitrum.io/rpc VITE_L1_OBSERVER_NODE=wss://rpc.sepolia.org,https://rpc.sepolia.org VITE_BASE_OBSERVER_NODE=wss://sepolia.base.org,https://sepolia.base.org vitest --reporter=verbose unit",
"test:integration": "npx playwright test",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource-variable/onest": "^5.0.3",
"@fontsource/inter": "^5.0.18",
"@fontsource/onest": "^5.0.3",
"@fontsource/poppins": "^5.0.8",
"@gemwallet/api": "^3.8.0",
"@ledgerhq/hw-app-xrp": "^6.29.4",
"@ledgerhq/hw-transport-webusb": "^6.28.6",
"@netlify/functions": "^2.8.1",
"@reduxjs/toolkit": "^1.9.7",
"@tanstack/react-form": "^0.33.0",
"@tanstack/react-query": "^5.51.16",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/chrome": "^0.0.248",
"@types/d3": "^7.4.3",
"@types/ramda": "^0.30.1",
"apexcharts": "^3.49.1",
"buffer": "^6.0.3",
"concurrently": "^8.2.2",
"d3": "^7.9.0",
"decimal.js": "^10.4.3",
"dlc-btc-lib": "2.5.5",
"dotenv": "^16.3.1",
"ethers": "5.7.2",
"formik": "^2.4.5",
"framer-motion": "^11.2.10",
"ledger-bitcoin": "^0.2.3",
"prettier": "^3.0.3",
"ramda": "^0.30.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-charts": "^3.0.0-beta.57",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-redux": "^8.1.3",
"react-youtube": "^10.1.0",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"redux-persist-expire": "^1.1.1",
"viem": "2.x",
"vite-plugin-toml": "^0.7.0",
"wagmi": "^2.12.2",
"xrpl": "^4.0.0"
},
"devDependencies": {
"@ls-lint/ls-lint": "^2.2.2",
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.10",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"react-router-dom": "^6.18.0",
"ts-unused-exports": "^10.0.1",
"typescript": "^5.2.2",
"vite": "^4.4.5",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^0.34.6"
}
}