-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@stellar-address-kit/core-ts",
"version": "0.1.0",
"description": "Stellar Address Kit – TypeScript routing extraction (M-address / SEP-0023)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --runInBand --forceExit",
"dev:infra": "docker compose up -d",
"dev:infra:stop": "docker compose stop",
"dev:infra:down": "docker compose down",
"dev:infra:logs": "docker compose logs -f",
"dev:infra:status": "docker compose ps",
"dev:infra:reset": "docker compose down -v",
"prepare": "node scripts/setup-git-hooks.mjs",
"precommit": "node scripts/pre-commit-checks.mjs"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitest/coverage-v8": "^1.6.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.2.2",
"typescript": "^5.4.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts",
"**/tests/**/*.test.tsx"
]
},
"pnpm": {
"overrides": {
"typescript": "5.7.3",
"jest": "29.7.0",
"jest-runtime": "29.7.0",
"jest-mock": "29.7.0",
"jest-environment-node": "29.7.0"
}
}
}