-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 962 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 962 Bytes
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
{
"name": "vaultex",
"version": "0.1.0",
"private": true,
"description": "Non-custodial lending and credit protocol built natively on Soroban smart contracts.",
"license": "MIT",
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=20"
},
"scripts": {
"build:client": "pnpm --filter @vaultex/lending-client build",
"dev:web": "pnpm --filter @vaultex/web dev",
"build": "pnpm --filter @vaultex/lending-client build && pnpm --filter @vaultex/web build",
"lint": "pnpm -r --if-present lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "pnpm -r --if-present test",
"contract:build": "stellar contract build",
"contract:test": "cargo test",
"contract:fmt": "cargo fmt --check",
"contract:clippy": "cargo clippy --all-targets -- -D warnings"
},
"devDependencies": {
"prettier": "^3.4.2"
}
}