-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
184 lines (184 loc) · 8.31 KB
/
package.json
File metadata and controls
184 lines (184 loc) · 8.31 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"name": "staking-wallet",
"version": "1.1.7",
"description": "",
"main": "index.js",
"homepage": "https://staking.orbs.network",
"engines": {
"node": "10.17.0"
},
"scripts": {
"clean": "rimraf dist",
"test": "jest --config ./src/__tests__/jest.config.js",
"test-watch": "jest --watch --config ./src/__tests__/jest.config.js",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"type-check": "tsc -p ./src/tsconfig.json",
"write:cname": "echo 'staking.orbs.network' > CNAME",
"build": " cross-env ENV_FILE=.env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack -d && cp dist/index.html dist/404.html",
"build-dev": "cross-env ENV_FILE=.env.development TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack -d",
"build-staging-ropsten": "cross-env ENV_FILE=.env.staging-ropsten TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack -d",
"build-dev-tunnel": "cross-env ENV_FILE=.env.development-tunnel TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack -d",
"build-dev-fork": "cross-env ENV_FILE=.env.mainnet-fork TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack -d",
"build-dev-fork-tunnel": "cross-env ENV_FILE=.env.mainnet-fork-tunnel TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack -d",
"build-beta": "cross-env ENV_FILE=.env.beta TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack -d && cp dist/index.html dist/404.html",
"dev": "cross-env ENV_FILE=.env.development TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w",
"dev-tunnel": "cross-env ENV_FILE=.env.development-tunnel TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w",
"dev-fork": "cross-env ENV_FILE=.env.mainnet-fork TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w --host 0.0.0.0",
"dev-fork-tunnel": "cross-env ENV_FILE=.env.mainnet-fork-tunnel TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w",
"dev-rops": "cross-env ENV_FILE=.env.ropsten TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w",
"dev-rops-tunnel": "cross-env ENV_FILE=.env.ropsten-tunnel TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w",
"staging-ropsten": "cross-env ENV_FILE=.env.staging-ropsten TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w",
"staging-prod": "cross-env ENV_FILE=.env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w",
"staging-beta": "cross-env ENV_FILE=.env.beta TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack-dev-server -w",
"build-server": "tsc -p ./src/server",
"deployOld": "rm -rf ./dist && npm run build && cross-env DEPLOY_REPO=staking DEPLOY_USER=orbs-network ./scripts/deploy.sh",
"predeploy-beta": "rm -rf ./dist && npm run build-beta && echo 'staking.beta.orbs.network' > dist/CNAME",
"deploy-beta": "gh-pages -d dist -r https://github.com/orbs-network/staking-beta.git",
"predeploy-production": "rm -rf ./dist && npm run build && echo 'staking.orbs.network' > dist/CNAME",
"deploy-production": "gh-pages -d dist -r https://github.com/orbs-network/staking.git",
"predeploy-staging": "rm -rf ./dist && npm run build-staging-ropsten && echo 'staking.staging.orbs.network' > dist/CNAME",
"deploy-staging": "gh-pages -d dist -r https://github.com/orbs-network/staking-staging.git",
"mkd": "mkdir -p ./src/local && mkdir -p ./ganache-env/_out",
"postinstall": "npm run mkd",
"sync-translations": "./src/translations/syncTranslations.zsh",
"serve-dev": "rm -rf ./dist && npm run build-dev && serve -s dist",
"serve-staging-ropsten": "rm -rf ./dist && npm run build-staging-ropsten && serve -s dist",
"serve-beta": "rm -rf ./dist && npm run build-beta && serve -s dist",
"serve-dev-tunnel": "rm -rf ./dist && npm run build-dev-tunnel && serve -s dist",
"serve-dev-fork": "rm -rf ./dist && npm run build-dev-fork && serve -s dist",
"serve-dev-fork-tunnel": "rm -rf ./dist && npm run build-dev-fork-tunnel && serve -s dist",
"tunnel-status": "tunnelto --port 7666 --subdomain statuspage",
"tunnel-ganache": "tunnelto --port 7545 --subdomain networkmock"
},
"keywords": [
"typescript",
"react",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/orbs-network/staking-wallet.git"
},
"license": "MIT",
"author": "Gil Amran",
"dependencies": {
"@babel/runtime": "^7.9.6",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.60",
"@maticnetwork/walletconnect-provider": "0.0.1-beta.1",
"@open-defi-notification-protocol/widget": "^0.0.3",
"@orbs-network/contracts-js": "0.0.36",
"@react-hook/hover": "^4.0.0",
"@sentry/react": "^6.5.1",
"@sentry/tracing": "^6.7.0",
"@walletconnect/web3-provider": "^1.7.7",
"animated-number-react": "^0.1.1",
"axios": "^0.21.1",
"big.js": "^5.2.2",
"clsx": "^1.1.1",
"color": "^3.1.2",
"copy-to-clipboard": "^3.3.1",
"copy-webpack-plugin": "^5.1.1",
"ethereumjs-abi": "^0.6.8",
"i18next": "^19.7.0",
"lodash": "^4.17.21",
"material-table": "^1.69.1",
"mobx": "^5.15.6",
"mobx-react": "^6.3.0",
"moment": "^2.25.3",
"notistack": "^1.0.10",
"orbs-client-sdk": "^2.5.0",
"orbs-pos-data": "^6.20.0",
"rc-progress": "^3.0.0",
"react-countup": "^4.3.3",
"react-ga": "^2.7.0",
"react-hanger": "^2.2.1",
"react-i18next": "^11.4.0",
"react-jazzicon": "^0.1.3",
"react-number-format": "^4.4.1",
"react-qrcode-logo": "^2.2.1",
"react-use": "^15.3.4",
"styled-components": "^5.1.0",
"ts-retry-promise": "^0.5.0",
"tslib": "^1.11.2",
"use-interval": "^1.2.1",
"web3": "^1.3.5",
"web3-utils": "^1.6.1",
"web3modal": "^1.9.5"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@material-ui/core": "^4.9.13",
"@svgr/webpack": "^5.4.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"@types/color": "^3.0.1",
"@types/cssnano": "^4.0.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/jest-expect-message": "^1.0.2",
"@types/lodash": "^4.14.159",
"@types/node": "^13.13.5",
"@types/react": "^16.9.34",
"@types/react-router-dom": "^5.1.5",
"@types/react-youtube": "^7.6.2",
"@types/styled-components": "^5.1.0",
"@types/webpack": "^4.41.12",
"@types/webpack-bundle-analyzer": "^2.13.3",
"@types/webpack-dev-server": "^3.10.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-plugin-transform-imports": "^2.0.0",
"concurrently": "^5.2.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.3.8",
"jest": "^26.0.1",
"jest-expect-message": "^1.0.2",
"locize-cli": "^7.2.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"ts-mockito": "^2.5.0",
"ts-node": "^8.10.1",
"tsc-watch": "^4.2.3",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3",
"url-loader": "^4.1.0",
"utility-types": "^3.10.0",
"web3-core": "^1.3.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-manifest-plugin": "^2.2.0"
}
}