-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "rosen-bridge",
"version": "0.2.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@emurgo/cardano-serialization-lib-browser": "^11.0.5",
"@emurgo/cip14-js": "^3.0.1",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.103",
"@mui/material": "^5.7.0",
"@rosen-bridge/minimum-fee-browser": "^0.1.3",
"@rosen-bridge/tokens": "^0.1.8",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.3.4",
"blakejs": "^1.2.1",
"buffer": "^6.0.3",
"copy-to-clipboard": "^3.3.3",
"ergo-lib-wasm-browser": "^0.20.1",
"json-bigint": "^1.0.0",
"node-fetch": "^2.6.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-number-format": "^4.9.3",
"react-perfect-scrollbar": "^1.5.8",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"rewire": "^6.0.0",
"sass": "^1.51.0",
"util": "^0.12.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "node ./scripts/start.js",
"prebuild": "node ./scripts/tokenmap.js && node ./scripts/contracts.js",
"build": "npm run prebuild && node ./scripts/build.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"fix": "prettier src --write",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"husky": "^8.0.2",
"prettier": "^2.8.1"
}
}