-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.39 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.39 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
{
"name": "root",
"private": true,
"license": "UNLICENSED",
"workspaces": {
"packages": [
"modules/*",
"libraries/*",
"tools/packages/*",
"tools/you-shall-not-pass/*",
"tools",
"features/*",
"adapters/*",
"sdks/*",
"apps/*",
"lint/*",
"docs",
"docs/*",
"ui/*"
]
},
"engines": {
"node": ">=22.14.0",
"yarn": ">=3"
},
"scripts": {
"lerna:run": "NODE_OPTIONS=--max-old-space-size=8192 lerna run",
"lint": "LINTER=true yarn lerna:run lint --reject-cycles",
"lint:fix": "LINTER=true yarn lerna:run lint:fix --no-bail --reject-cycles",
"lint:rust": "yarn lerna:run lint:rust --reject-cycles",
"test": "yarn lerna:run test --reject-cycles",
"test:integration": "lerna run test:integration",
"test:rust": "yarn lerna:run test:rust --reject-cycles",
"build": "yarn lerna:run build",
"format": "prettier --write \"**/*.{json,md,yaml}\" --log-level warn",
"format:check": "prettier --check \"**/*.{json,md,yaml}\" --log-level warn",
"cache:delete": "node ./tools/scripts/cache/delete",
"generate": "tools/scripts/generate.js",
"postmigrate": "node tools/scripts/postmigrate/index.js",
"release": "lerna-release-action",
"jsvu": "jsvu --engines=hermes",
"sync": "./tools/scripts/sync.js",
"sync:mobile": "DEFAULT_REPOSITORY_PATH=../exodus-mobile/src ./tools/scripts/sync.js",
"sync:browser": "DEFAULT_REPOSITORY_PATH=../exodus-browser/apps/browser/src ./tools/scripts/sync.js"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@exodus/lerna-release-action-cli": "^1.4.0",
"@exodus/lerna-utils": "^1.5.0",
"@exodus/prettier": "^1.0.0",
"@exodus/solana-api": "^3.10.1",
"@exodus/test": "^1.0.0-rc.105",
"@types/debug": "^4.1.7",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.4.0",
"@types/jsdom": "^20.0.0",
"@types/node": "^22.7.4",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^9.9.1",
"jsdom": "^24.1.0",
"jsvu": "^3.0.0",
"knip": "^5.33.1",
"lerna": "^9.0.0",
"prettier": "^3.3.3",
"typescript": "^5.7.0"
},
"resolutions": {
"@exodus/models": "^12.1.1",
"@exodus/currency": "5.0.2",
"@types/react": "^17.0.0",
"@puppeteer/browsers/proxy-agent": "npm:@hydra/you-shall-not-pass.proxy-agent@workspace:^",
"domain-browser": "npm:@hydra/you-shall-not-pass.object@workspace:^",
"@docusaurus/types/react-helmet-async": "npm:@hydra/you-shall-not-pass.object@workspace:^",
"grpc": "npm:@hydra/you-shall-not-pass.object@workspace:^",
"react-native/@react-native-community/cli": "npm:@exodus/react-native-community-cli@5.0.1-exodus.1",
"react-native/@react-native-community/cli-platform-ios": "npm:@exodus/cli-platform-ios@5.0.1-exodus.5",
"react-native/@react-native-community/cli-platform-android": "npm:@exodus/cli-platform-android@5.0.1-exodus.5"
},
"dependenciesMeta": {
"bigint-buffer": {
"built": false
},
"blake-hash": {
"built": false
},
"bufferutil": {
"built": false
},
"cbor-extract": {
"built": false
},
"keccak": {
"built": false
},
"secp256k1": {
"built": false
},
"utf-8-validate": {
"built": false
}
},
"prettier": "@exodus/prettier",
"packageManager": "yarn@4.3.0"
}