forked from ChainSafe/chainbridge-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·109 lines (109 loc) · 3.88 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
{
"name": "@chainsafe/chainbridge-ui",
"version": "1.0.0",
"private": true,
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.1",
"@chainsafe/chainbridge-contracts": "1.0.5",
"@chainsafe/common-components": "1.0.26",
"@chainsafe/common-theme": "1.0.10",
"@chainsafe/web3-context": "1.2.0",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@ethersproject/abi": "^5.4.0",
"@ethersproject/bignumber": "^5.4.1",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.3",
"@material-ui/styles": "4.10.0",
"@polkadot/api": "12.3.1",
"@polkadot/extension-dapp": "0.50.1",
"@polkadot/keyring": "13.0.2",
"@polkadot/networks": "13.0.2",
"@polkadot/types": "12.1.1",
"@polkadot/ui-keyring": "3.8.3",
"@polkadot/ui-settings": "3.8.3",
"@polkadot/util": "13.0.2",
"@polkadot/util-crypto": "13.0.2",
"@sentry/react": "^6.11.0",
"@sentry/tracing": "^6.11.0",
"@vitejs/plugin-react-refresh": "1.3.6",
"@vitejs/plugin-vue": "^2.3.1",
"bignumber.js": "^9.0.1",
"bnc-onboard": "1.26.1",
"buffer": "^6.0.3",
"clsx": "^1.1.1",
"dayjs": "^1.9.1",
"ethers": "5.4.4",
"formik": "^2.2.0",
"history": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-toast-notifications": "2.4.0",
"vite": "2.9.1",
"yup": "^0.29.3"
},
"devDependencies": {
"@honkhonk/vite-plugin-svgr": "^1.1.0",
"@polkadot/typegen": "7.15.1",
"@sentry/cli": "1.58.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.7",
"@types/history": "^4.7.8",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.0",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"chalk": "^4.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"prettier": "2.1.2",
"pretty-quick": "^3.1.1",
"typescript": "^4.0.3"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"sentry": "(export VITE_SENTRY_RELEASE=$(sentry-cli releases propose-version); node scripts/sentry.js)",
"release": "(export VITE_SENTRY_RELEASE=$(sentry-cli releases propose-version); yarn build && node scripts/sentry.js)",
"test": "react-scripts test",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"clean:dependencies": "rm -rf ./node_modules && rm -rf ./*/**/node_modules",
"clean:dist": "rm -rf ./*/**/dist && rm -rf ./*/**/build && rm -rf ./*/**/storybook-static",
"clean": "yarn clean:dependencies && yarn clean:dist",
"prettier": "prettier --config .prettierrc.js '**/*.{ts,tsx,js,jsx,json,css,md,html}' --write",
"start:tunnel": "./ngrok http https://localhost:3000",
"start:substrate": "docker-compose -f ./docker-compose-substrate.yml up -V",
"start:centrifuge": "docker-compose -f ./docker-compose-centrifuge.yml up -V",
"setup:example": "./scripts/setup-eth-example.sh && node --experimental-json-modules ./scripts/setup-sub-example.mjs",
"setup:centrifuge": "./scripts/setup-eth-centrifuge.sh",
"prepare": "husky install",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0"
}
}