-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.61 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "galaxy-devkit",
"version": "1.0.0",
"description": "Galaxy DevKit - Complete development framework for Stellar ecosystem",
"private": true,
"workspaces": [
"packages/*",
"tools/*"
],
"scripts": {
"build": "lerna run build --scope @galaxy-kj/core-oracles --scope @galaxy-kj/core-defi-protocols --scope @galaxy-kj/core-stellar-sdk --scope @galaxy-kj/core-invisible-wallet --scope @galaxy-kj/core-automation --scope @galaxy-kj/cli || (exit 0)",
"dev": "lerna run dev",
"deploy": "lerna run deploy",
"lint": "lerna run lint --scope @galaxy-kj/core-defi-protocols --scope @galaxy-kj/core-oracles --scope @galaxy-kj/core-stellar-sdk --scope @galaxy-kj/core-invisible-wallet --scope @galaxy-kj/core-automation --scope @galaxy-kj/cli || (exit 0)",
"lint:fix": "lerna run lint:fix",
"type-check": "lerna run type-check --scope @galaxy-kj/core-defi-protocols --scope @galaxy-kj/core-oracles --scope @galaxy-kj/core-stellar-sdk --scope @galaxy-kj/core-invisible-wallet --scope @galaxy-kj/core-automation --scope @galaxy-kj/cli || (exit 0)",
"clean": "lerna run clean",
"bootstrap": "lerna bootstrap",
"bump": "lerna version",
"publish": "lerna publish",
"test": "jest",
"test:e2e": "playwright test",
"cli": "npm run start:ts --workspace=@galaxy-kj/cli",
"gen:docs": "npx ts-node tools/docs/interactive-docs-generator.ts",
"serve:docs": "npx http-server docs -p 8080"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@eslint/eslintrc": "^3.0.0",
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"concurrently": "^8.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"http-server": "^14.1.1",
"jest": "^30.2.0",
"lerna": "^9.0.3",
"prettier": "^3.0.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Galaxy-KJ/Galaxy-DevKit.git"
},
"keywords": [
"stellar",
"soroban",
"blockchain",
"framework",
"sdk",
"defi",
"smart-contracts"
],
"author": "Galaxy DevKit Team",
"license": "MIT",
"dependencies": {
"@blend-capital/blend-sdk": "^3.2.2",
"@galaxy-kj/core-defi-protocols": "^5.0.2",
"@galaxy-kj/core-invisible-wallet": "^5.1.1",
"@stellar/stellar-sdk": "^14.4.3",
"node-cron": "^4.2.1"
},
"overrides": {
"diff": "^8.0.1",
"handlebars": "4.7.9",
"tar": "^7.5.7",
"xml2js": "^0.6.0",
"blessed-contrib": "^4.11.0"
}
}