-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.14 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.14 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
{
"name": "arb-token-bridge-ui-mono",
"private": true,
"license": "UNLICENSED",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "yarn workspace app dev",
"build": "yarn workspace app build",
"start": "yarn workspace app start",
"audit:ci": "audit-ci --config ./audit-ci.jsonc",
"test:ci": "yarn workspace arb-token-bridge-ui test:ci && yarn workspace arb-token-bridge-ui test:integration",
"test:integration": "yarn workspace arb-token-bridge-ui test:integration",
"prettier:check": "./node_modules/.bin/prettier --check .",
"prettier:format": "./node_modules/.bin/prettier --write .",
"lint": "tsc && eslint",
"lint:fix": "tsc && eslint --quiet --fix",
"postinstall": "yarn install:chromium",
"install:chromium": "npx @puppeteer/browsers install chrome@$npm_package_config_chromeVersion --path $npm_package_config_chromePath",
"test:e2e": "yarn workspace arb-token-bridge-ui env-cmd --silent --file .e2e.env yarn synpress run --configFile synpress.config.ts",
"test:e2e:cctp": "yarn test:e2e --configFile synpress.cctp.config.ts",
"test:e2e:orbit": "E2E_ORBIT=true yarn test:e2e",
"test:e2e:orbit:custom-gas-token": "E2E_ORBIT_CUSTOM_GAS_TOKEN=true yarn test:e2e"
},
"resolutions": {
"node-forge": "1.4.0",
"@types/node-forge": "1.3.14",
"**/@walletconnect/ethereum-provider": "2.13.1",
"@octokit/core/@octokit/request-error": "5.1.1",
"@octokit/core/@octokit/request": "8.4.1",
"@octokit/graphql/@octokit/request": "8.4.1",
"@actions/github/@octokit/plugin-paginate-rest": "9.2.2",
"**/react-syntax-highlighter/prismjs": "1.30.0",
"**/react-syntax-highlighter/refractor/prismjs": "1.30.0",
"**/@babel/runtime": "7.26.10",
"**/tar-fs": "2.1.4",
"sharp/tar-fs": "3.0.9",
"**/form-data": "4.0.5",
"**/axios": "1.15.0",
"@eslint/plugin-kit": "0.3.4",
"@types/react": "18.2.12",
"@types/react-dom": "18.3.7",
"**/js-yaml": "4.1.1",
"**/undici": "6.24.0",
"**/h3": "1.15.10",
"**/lodash": "4.18.1",
"**/lodash-es": "4.18.1",
"**/sha.js": "2.4.12",
"**/bn.js": "5.2.3",
"**/flatted": "3.4.2",
"**/defu": "6.1.6",
"**/brace-expansion": "1.1.13",
"@typescript-eslint/**/brace-expansion": "5.0.5",
"**/hono": "4.12.14",
"**/follow-redirects": "1.16.0"
},
"keywords": [],
"author": "",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@offchainlabs/eslint-config-typescript": "0.2.2",
"@offchainlabs/prettier-config": "0.3.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.5.0",
"audit-ci": "^6.3.0",
"eslint": "^9.26.0",
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-zustand-rules": "https://github.com/OffchainLabs/eslint-plugin-zustand-rules",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.8.3"
},
"config": {
"chromeVersion": "128.0.6613.137",
"chromePath": "node_modules/.cache/synpress"
}
}