-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
71 lines (71 loc) · 2.93 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
{
"name": "@xlabs/portal-bridge-ui",
"private": true,
"version": "0.2.19",
"type": "module",
"scripts": {
"dev:usdc-bridge": "vite --config ./vite.usdc-bridge.config.ts",
"dev:usdc-bridge:mainnet": "cross-env VITE_APP_CLUSTER=Mainnet npm run dev:usdc-bridge",
"dev:usdc-bridge:testnet": "cross-env VITE_APP_CLUSTER=Testnet npm run dev:usdc-bridge",
"build:usdc-bridge": "cross-env VITE_APP_CLUSTER=Mainnet tsc && cross-env VITE_APP_CLUSTER=Mainnet vite build --config ./vite.usdc-bridge.config.ts",
"dev:token-bridge": "vite --config ./vite.token-bridge.config.ts",
"dev:token-bridge:mainnet": "cross-env VITE_APP_CLUSTER=Mainnet npm run dev:token-bridge",
"dev:token-bridge:testnet": "cross-env VITE_APP_CLUSTER=Testnet npm run dev:token-bridge",
"build:token-bridge": "cross-env VITE_APP_CLUSTER=Mainnet tsc && cross-env VITE_APP_CLUSTER=Mainnet vite build --config ./vite.token-bridge.config.ts",
"dev": "npm run dev:token-bridge:testnet",
"start": "npm run dev",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --check ./src",
"preview": "cross-env VITE_APP_CLUSTER=Mainnet vite preview",
"format": "npm run prettier -- --write ./src",
"ts:check": "tsc --project ./tsconfig.json --noEmit --skipLibCheck",
"test": "cross-env VITE_APP_CLUSTER=Mainnet jest --coverage",
"test:watch": "cross-env VITE_APP_CLUSTER=Mainnet jest --coverage --watchAll=true"
},
"dependencies": {
"@certusone/wormhole-sdk": "^0.10.18",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.11",
"@mui/material": "^5.12.1",
"@tanstack/react-query": "^5.14.2",
"@wormhole-foundation/sdk": "^1.0.0",
"@wormhole-foundation/wormhole-connect": "^1.1.9-beta.0-development",
"aptos": "^1.21.0",
"bech32": "^2.0.0",
"dompurify": "^3.0.6",
"mixpanel-browser": "^2.53.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.24.0"
},
"devDependencies": {
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/bs58": "^4.0.4",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/mixpanel-browser": "^2.49.0",
"@types/node": "^20.7.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.2",
"vite": "^5",
"vite-plugin-html": "^3.2.2"
}
}