forked from drydocs/meridian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 888 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
28
29
30
31
32
33
34
35
{
"name": "meridian",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"coverage": "turbo run coverage",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"typecheck:api": "tsc --noEmit -p api/tsconfig.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"verify:contracts": "tsx scripts/verify-contract-addresses.ts"
},
"dependencies": {
"@stellar/stellar-sdk": "^14.6.1"
},
"devDependencies": {
"@types/node": "^26.2.0",
"esbuild": "^0.28.2",
"turbo": "^2.10.8",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"prettier": "^3.9.6",
"@eslint/js": "^10.0.1",
"eslint": "^10.9.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.0.0"
}