-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.81 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
97
{
"name": "jomo-tlsn-sdk-example",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:3001",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@iconify/react": "^4.1.0",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.11.10",
"@mui/x-data-grid": "^6.5.0",
"@react-oauth/google": "^0.11.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@walletconnect/encoding": "^1.0.2",
"@walletconnect/ethereum-provider": "^2.8.6",
"@walletconnect/modal": "^2.5.9",
"@walletconnect/modal-auth-react": "^2.5.9",
"@walletconnect/modal-sign-react": "^2.5.9",
"base64-string": "^1.1.2",
"bignumber.js": "^9.1.0",
"chart.js": "^3.8.0",
"circomlib": "^0.5.5",
"comlink": "^4.4.1",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.30.0",
"dotenv": "^16.0.2",
"ethers": "^5.7.2",
"framer-motion": "^4.1.17",
"jomo-tlsn-sdk": "^1.0.5",
"jwt-decode": "^3.1.2",
"localforage": "^1.10.0",
"notistack": "^3.0.1",
"numeral": "^2.0.6",
"openlayer-sdk": "^1.0.1",
"pako": "^2.1.0",
"querystring-browser": "^1.0.4",
"react": "^18.0.0",
"react-chartjs-2": "^4.1.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-helmet-async": "^1.3.0",
"react-lazy-load-image-component": "^1.6.0",
"react-router-dom": "^6.4.1",
"react-scripts": "4.0.3",
"react-snap": "^1.23.0",
"react-use-websocket": "^4.3.1",
"readline": "^1.3.0",
"shamirs-secret-sharing": "^1.0.1",
"siwe": "^2.1.4",
"snarkjs": "^0.6.3",
"uuid": "^9.0.0",
"viem": "^1.19.3",
"wagmi": "^1.4.7",
"wasm-feature-detect": "^1.5.1",
"web-vitals": "^2.1.4",
"web3modal": "^1.9.12"
},
"overrides": {
"react-error-overlay": "6.0.9",
"typescript": "5.0.2"
},
"scripts": {
"start": "react-scripts --openssl-legacy-provider start",
"start2": "react-scripts start",
"build": "react-scripts --openssl-legacy-provider build",
"build2": "react-scripts build",
"build:wasm": "cd wasm-lib && wasm-pack build --target web --out-dir pkg",
"build:wasm-mt": "cd wasm-lib && RUSTFLAGS='-C target-feature=+atomics,+bulk-memory,+mutable-globals' rustup run nightly-2022-09-30 wasm-pack build --target web --out-dir pkg-parallel",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
]
}
}