-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
116 lines (116 loc) · 4.15 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
111
112
113
114
115
116
{
"name": "znn-bridge-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@elgorditosalsero/react-gtm-hook": "^2.7.2",
"@reduxjs/toolkit": "^1.8.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@walletconnect/ethereum-provider": "^2.11.2",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/sign-client": "^2.11.2",
"@walletconnect/types": "^2.11.2",
"axios": "^1.6.5",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"dotenv": "^16.0.3",
"ethers-ts": "^5.5.3",
"json-bigint": "^1.0.0",
"json-bignumber": "^1.1.1",
"ogl-typescript": "^0.1.40",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.34.2",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.0.8",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1",
"sass": "^1.54.5",
"web-vitals": "^2.1.4",
"web3": "^1.7.5",
"web3modal": "^1.9.12",
"znn-ts-sdk": "0.1.2"
},
"scripts": {
"clean-restart": "npm ci && npm run start-dev",
"start": "npm run start-dev",
"start-test": "cross-env REACT_APP_NETWORK_ENV=test react-scripts start",
"start-dev": "cross-env REACT_APP_NETWORK_ENV=development react-scripts start",
"start-staging": "cross-env REACT_APP_NETWORK_ENV=staging react-scripts start",
"start-prod": "cross-env REACT_APP_NETWORK_ENV=production react-scripts start",
"start-supernova-test": "cross-env REACT_APP_NETWORK_ENV=supernova-test react-scripts start",
"start-supernova-staging": "cross-env REACT_APP_NETWORK_ENV=supernova-staging react-scripts start",
"start-supernova-prod": "cross-env REACT_APP_NETWORK_ENV=supernova-production react-scripts start",
"build": "react-scripts build",
"build-test": "cross-env REACT_APP_NETWORK_ENV=test react-scripts build",
"build-dev": "cross-env REACT_APP_NETWORK_ENV=development react-scripts build",
"build-staging": "cross-env REACT_APP_NETWORK_ENV=staging react-scripts build",
"build-prod": "cross-env REACT_APP_NETWORK_ENV=production react-scripts build",
"build-supernova-test": "cross-env REACT_APP_NETWORK_ENV=supernova-test react-scripts build",
"build-supernova-staging": "cross-env REACT_APP_NETWORK_ENV=supernova-staging react-scripts build",
"build-supernova-prod": "cross-env REACT_APP_NETWORK_ENV=supernova-production react-scripts build",
"encode-env": "node encodeEnv.js",
"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": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/json-bigint": "^1.0.1",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.11",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.21.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"ethers": "^5.6.9",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.9.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
}
}