-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.88 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.88 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
{
"name": "arb-token-bridge-ui-mono",
"private": true,
"license": "Apache-2.0",
"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",
"prettier:check": "./node_modules/.bin/prettier --check .",
"prettier:format": "./node_modules/.bin/prettier --write .",
"lint": "yarn workspace app lint && yarn workspace arb-token-bridge-ui lint",
"lint:fix": "yarn workspace app lint:fix && yarn workspace arb-token-bridge-ui lint: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": {
"**/@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.3",
"sharp/tar-fs": "3.0.9",
"**/form-data": "4.0.4",
"**/axios": "1.12.0",
"@eslint/plugin-kit": "0.3.4"
},
"keywords": [],
"author": "",
"workspaces": [
"packages/*"
],
"devDependencies": {
"audit-ci": "^6.3.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.26.0",
"@next/eslint-plugin-next": "^15.3.2",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.26.0",
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-zustand-rules": "https://github.com/OffchainLabs/eslint-plugin-zustand-rules",
"typescript-eslint": "^8.32.1",
"typescript": "^5.2.2",
"@types/node": "^16.6.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4"
},
"config": {
"chromeVersion": "128.0.6613.137",
"chromePath": "node_modules/.cache/synpress"
}
}