-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
37 lines (37 loc) · 1.61 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
{
"name": "emerald-wallet",
"private": true,
"license": "Apache-2.0",
"packageManager": "[email protected]",
"scripts": {
"build": "yarn workspace @emeraldwallet/desktop run build",
"build:dist": "yarn build:native && yarn workspace @emeraldwallet/desktop run build:dist",
"build:native": "yarn workspaces foreach run build:native",
"clean": "yarn workspaces foreach run clean",
"clean:modules": "rimraf -g node_modules 'packages/*/node_modules'",
"test": "yarn workspaces foreach run test",
"test:coverage": "yarn workspaces foreach run test:coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-exports": "^0.8.0",
"eslint-plugin-unused-imports": "^3.0.0",
"neon-cli": "^0.10.1",
"prettier": "^3.0.0"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@emeraldpay/api": "https://artifacts.emerald.cash/builds/emerald-api-js/a35b8b1c/emeraldpay-api-v0.5.0-dev.tgz",
"@emeraldpay/api-node": "https://artifacts.emerald.cash/builds/emerald-api-js/a35b8b1c/emeraldpay-api-node-v0.5.0-dev.tgz",
"@emeraldpay/emerald-vault-core": "https://artifacts.emerald.cash/builds/vault-node/1ffb2ac8/emeraldpay-emerald-vault-core-v0.13.0-dev.tgz",
"@emeraldpay/emerald-vault-native": "https://artifacts.emerald.cash/builds/vault-node/1ffb2ac8/emeraldpay-emerald-vault-native-v0.13.0-dev.tgz"
}
}