-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.18 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
98
99
100
101
102
{
"name": "betfrost-odin-dapp",
"description": "Betfrost Odin DApp",
"version": "0.1.0",
"author": "Ice <icegriffin1122@gmail.com>",
"license": "GPL-3.0-or-later",
"dependencies": {
"@elrondnetwork/dapp-core": "1.0.45",
"@elrondnetwork/erdjs": "10.0.0-beta.3",
"@elrondnetwork/erdjs-walletcore": "^1.0.0",
"@material-ui/core": "^4.12.4",
"axios": "^0.21.1",
"bootstrap": "4.6.0",
"copy-to-clipboard": "^3.3.1",
"moment": "2.29.1",
"react": "17.0.2",
"react-bootstrap": "^2.2.2",
"react-bootstrap-range-slider": "^3.0.3",
"react-collapse": "^5.1.1",
"react-countdown": "^2.3.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-modal": "^3.14.4",
"react-onesignal": "^2.0.3",
"react-pin-field": "^2.0.0-beta.3",
"react-pin-input": "^1.1.0",
"react-push-notification": "^1.3.0",
"react-router-dom": "^6.2.2",
"react-scripts": "4.0.3",
"typescript": "4.1.2",
"web-vitals": "1.0.1"
},
"scripts": {
"start": "react-scripts start",
"start-testnet": "npm run copy-testnet-config & npm run start",
"start-devnet": "npm run copy-devnet-config & npm run start",
"build": "CI=false && react-scripts build",
"build-testnet": "npm run copy-testnet-config & npm run build",
"build-devnet": "npm run copy-devnet-config & npm run build",
"test": "react-scripts test",
"copy-testnet-config": "cp ./src/config.testnet.tsx ./src/config.tsx",
"copy-devnet-config": "cp ./src/config.devnet.tsx ./src/config.tsx",
"eject": "react-scripts eject",
"lint": "eslint --ext js,ts,tsx src"
},
"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": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/lab": "^5.0.0-alpha.79",
"@mui/material": "^5.6.3",
"@soywod/pin-field": "^0.2",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "26.0.15",
"@types/node": "12.0.0",
"@types/react": "17.0.7",
"@types/react-dom": "17.0.0",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "5.1.7",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-react": "1.1.7",
"eslint-config-react-app": "6.0.0",
"eslint-config-standard": "16.0.2",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"node-sass": "6.0.1",
"react-error-overlay": "6.0.9",
"react-tabs": "^5.1.0"
},
"resolutions": {
"react-error-overlay": "6.0.9",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}