-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.23 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
{
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/lab": "^5.0.0-alpha.82",
"@mui/material": "^5.8.0",
"@mui/styled-engine-sc": "^5.8.0",
"@mui/system": "^5.8.0",
"@randlabs/myalgo-connect": "^1.1.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/big.js": "^6.1.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"algosdk": "^1.16.0",
"big.js": "^6.2.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"env-cmd": "^10.1.0",
"near-api-js": "^0.44.2",
"react": "^18.1.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.1.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-router-dom": "6",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.5.0",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.5",
"typescript": "^4.4.2",
"usehooks-ts": "^2.5.3",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.18.1",
"@types/react-syntax-highlighter": "^15.5.1",
"process": "^0.11.10"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"homepage": "https://halfmooncross.com",
"name": "algorand-near-bridge-ui",
"private": true,
"scripts": {
"build": "react-app-rewired build",
"build:testnet": "env-cmd -f .env.testnet npm run build",
"build:mainnet": "env-cmd -f .env.mainnet npm run build",
"eject": "echo 'forbidden' # react-app-rewired eject",
"start": "react-app-rewired start",
"start:production": "NODE_ENV=production REACT_APP_NODE_ENV=production yarn start",
"test": "react-app-rewired test",
"deploy": "yarn build && echo 'still need to serve with our AWS server, possibly using `afscp:serve'\"'\"''"
},
"version": "0.1.0"
}