-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.76 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
{
"name": "@normalfinance/normal-v1-interface",
"description": "",
"version": "0.0.1",
"scripts": {
"test": "yarn workspace @normalfinance/utils run test --passWithNoTests",
"build": "yarn workspace @normalfinance/utils run build && yarn workspace @normalfinance/types run build && yarn workspace @normalfinance/ui run build && yarn run build:solana && yarn run build:stellar",
"dev:solana": "yarn workspace @normalfinance/solana-web dev",
"dev:stellar": "yarn workspace @normalfinance/stellar-web dev",
"build:solana": "yarn workspace @normalfinance/solana-sdk build && yarn workspace @normalfinance/solana-web build",
"build:stellar": "yarn workspace @normalfinance/stellar-contracts build && yarn workspace @normalfinance/stellar-web build",
"build:ui": "yarn workspace @normalfinance/ui build",
"build:utils": "yarn workspace @normalfinance/utils build",
"build:types": "yarn workspace @normalfinance/types build"
},
"repository": {
"type": "git",
"url": "https://github.com/normalfinance/normal-v1-interface.git"
},
"author": "Normal",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/normalfinance/normal-v1-interface/issues"
},
"homepage": "https://github.com/normalfinance/normal-v1-interface",
"workspaces": [
"packages/solana/*",
"packages/stellar/*",
"packages/types",
"packages/ui",
"packages/utils",
"packages/*"
],
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.2",
"jest": "^29.5.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@stellar/stellar-sdk": "^12.1.0",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/sign-client": "^2.13.1",
"@walletconnect/types": "^2.13.1",
"next": "15.0.3"
}
}