forked from Axionvera/axionvera-network
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.25 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
{
"name": "axionvera-network",
"private": true,
"type": "module",
"scripts": {
"build:contracts": "cargo build -p axionvera-vault-contract --target wasm32-unknown-unknown --release",
"test:rust": "cargo test -p axionvera-vault-contract",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:clean": "docker system prune -f && vitest run --config vitest.integration.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"deploy": "tsx scripts/deploy.ts",
"initialize": "tsx scripts/initialize.ts",
"format": "prettier --write . && cargo fmt --all",
"lint": "eslint . --fix && cargo clippy --all-targets --all-features -- -D warnings",
"prepare": "husky"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.18.0",
"@types/node": "^22.10.6",
"eslint": "^9.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"testcontainers": "^10.18.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.9"
},
"lint-staged": {
"*.{ts,js,json,md}": "prettier --write",
"*.rs": "cargo fmt --all --"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.3.0",
"node-fetch": "^3.3.2"
}
}