-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
122 lines (122 loc) · 3.83 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
117
118
119
120
121
122
{
"name": "wormscan-ui",
"version": "2.0.13",
"private": true,
"source": "src/index.html",
"@parcel/resolver-default": {
"packageExports": true
},
"targets": {
"swagger-ui-parcel": {
"context": "browser",
"outputFormat": "global",
"scopeHoist": false,
"isLibrary": false,
"optimize": true,
"includeNodeModules": true,
"sourceMap": true,
"source": "src/index.html",
"engines": {
"browsers": "> 0.5%, last 2 versions, not dead"
}
}
},
"scripts": {
"build": "parcel build --no-scope-hoist --public-url ./ && node addCSP.ts",
"start": "parcel",
"local": "WORMSCAN_BFF_URL='http://localhost:8080' parcel",
"clean": "rimraf dist && rimraf .parcel-cache",
"prepare": "husky install",
"test:e2e": "yarn playwright test",
"postinstall": "sed -i.bak 's/#swagger-ui/$swagger-ui/' ./node_modules/swagger-ui-react/index.cjs && rm ./node_modules/swagger-ui-react/index.cjs.bak"
},
"devDependencies": {
"@parcel/transformer-sass": "latest",
"@playwright/test": "^1.38.1",
"@types/node": "^18.13.0",
"@types/react": "^18.0.27",
"@types/react-datepicker": "7.0.0",
"@types/react-dom": "^18.0.10",
"@types/react-dropzone": "^5.1.0",
"@types/react-table": "^7.7.20",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"assert": "^2.0.0",
"crypto-browserify": "^3.12.0",
"eslint": "^8.41.0",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.1.0",
"http-proxy-middleware": "^2.0.6",
"https-browserify": "^1.0.0",
"husky": ">=6",
"lint-staged": ">=10",
"parcel": "latest",
"prettier": "^2.8.3",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"rimraf": "^4.1.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.0",
"string_decoder": "^1.3.0",
"typescript": "^4.9.4",
"url": "^0.11.0"
},
"dependencies": {
"@analytics/google-analytics": "^1.0.7",
"@metamask/detect-provider": "^2.0.0",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toggle-group": "1.0.2",
"@radix-ui/react-tooltip": "1.0.5",
"@types/swagger-ui-react": "^4.18.3",
"@wormhole-foundation/sdk": "^1.0.2",
"analytics": "^0.8.9",
"apexcharts": "^3.49.1",
"axios": "^1.4.0",
"ethers": "6",
"i18next": "22.4.9",
"immutable": "3.8.2",
"react": "18.2.0",
"react-apexcharts": "^1.4.1",
"react-datepicker": "7.6.0",
"react-dom": "18.2.0",
"react-draggable": "4.4.5",
"react-dropzone": "^14.2.3",
"react-flip-numbers": "^3.0.8",
"react-i18next": "12.1.5",
"react-json-view-lite": "1.4.0",
"react-lottie-player": "^2.1.0",
"react-query": "3.39.3",
"react-router-dom": "6.22.0",
"react-select": "5.7.2",
"react-table": "7.8.0",
"react-toastify": "^10.0.4",
"recoil": "0.7.6",
"swagger-ui": "^5.17.14",
"swagger-ui-react": "^5.17.14"
},
"alias": {
"src": "./src",
"./node_modules/swagger-ui-react/index.mjs": "./node_modules/swagger-ui-react/index.cjs",
"./node_modules/swagger-ui/dist/swagger-ui-es-bundle-core.js": "./node_modules/swagger-ui/dist/swagger-ui.js",
"$swagger-ui": "./node_modules/swagger-ui-react/swagger-ui.js",
"@injectivelabs/sdk-ts": false,
"@injectivelabs/networks": false,
"@injectivelabs/utils": false,
"@terra-money/terra.js": false,
"@terra-money/terra.proto": false,
"@terra-money/legacy.proto": false,
"@xpla/xpla.js": false,
"aptos": false,
"@mysten/sui.js": false,
"near-api-js": false,
"@project-serum/anchor": false,
"elliptic": false
},
"lint-staged": {
"*.{svg,ts,tsx,js,jsx,scss,css,md}": "prettier --write"
},
"packageManager": "[email protected]"
}