-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.4 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
103
104
105
106
107
108
109
110
{
"name": "reduxprotocol",
"description": "Redux Protocol",
"version": "0.3.0",
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@material-ui/core": "^4.12.4",
"@material-ui/styles": "^4.11.5",
"@mui/x-date-pickers": "^5.0.0-alpha.2",
"@web3-react/core": "^6.1.9",
"axios": "0.21.1",
"big-number": "^2.0.0",
"bootstrap": "4.6.0",
"date-fns": "^2.28.0",
"moment": "2.29.1",
"react": "17.0.2",
"react-bootstrap": "2.1.2",
"react-countdown": "^2.3.2",
"react-datetime-picker": "^3.5.0",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-modal": "^3.14.4",
"react-radio-buttons": "^1.2.2",
"react-redux": "^8.0.2",
"react-router-dom": "6.2.1",
"react-scripts": "4.0.3",
"react-super-responsive-table": "^5.2.0",
"redux-thunk": "^2.4.1",
"typesafe-actions": "^5.1.0",
"typescript": "4.1.2",
"web-vitals": "1.0.1",
"web3": "^1.7.4"
},
"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/material": "^5.6.3",
"@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/next-redux-wrapper": "^3.0.0",
"@types/node": "12.0.0",
"@types/react": "17.0.7",
"@types/react-dom": "17.0.0",
"@types/react-modal": "^3.13.1",
"@types/react-redux": "^7.1.24",
"@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",
"prettier": "2.3.2",
"react-error-overlay": "6.0.9",
"react-particles-js": "3.5.2",
"react-tsparticles": "1.41.6",
"tsparticles": "^2.0.6"
},
"resolutions": {
"react-error-overlay": "6.0.9",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}