forked from Galaxy-KJ/Galaxy-DevKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.07 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 4.07 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "galaxy-devkit",
"version": "1.0.0",
"description": "Galaxy DevKit - Complete development framework for Stellar ecosystem",
"private": true,
"workspaces": [
"packages/*",
"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/frontend --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/frontend --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/frontend --scope @galaxy-kj/cli || (exit 0)",
"clean": "lerna run clean",
"bootstrap": "lerna bootstrap",
"bump": "lerna version",
"publish": "lerna publish",
"test": "jest",
"test:integration": "jest --config packages/integration-tests/jest.config.cjs",
"test:e2e": "playwright test",
"contracts:deploy": "bash scripts/deploy-contracts.sh",
"contracts:init": "bash scripts/init-contracts.sh",
"contracts:deploy-and-init": "npm run contracts:deploy && npm run contracts:init",
"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": {
"@eslint/eslintrc": "^3.0.0",
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.49.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"babel-plugin-istanbul": "^8.0.0",
"concurrently": "^8.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"http-server": "^14.1.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.3.0",
"lerna": "^9.0.3",
"prettier": "^3.0.0",
"test-exclude": "^8.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",
"shell-quote": "^1.9.0",
"tar": "^7.5.16",
"xml2js": "^0.6.0",
"blessed-contrib": "^4.11.0",
"lodash": "^4.18.1",
"postcss": "^8.5.10",
"js-yaml": "^4.1.2",
"uuid": "^11.1.1",
"esbuild": "^0.25.0",
"flatted": "^3.4.2",
"follow-redirects": "^1.15.12",
"form-data": "^4.0.6",
"ip-address": "^10.1.1",
"joi": "^17.13.4",
"morgan": "^1.10.2",
"tmp": "^0.2.6",
"ws": "^8.21.0",
"yaml": "^2.8.3",
"vite": "^6.4.3",
"eslint": {
"minimatch": "^3.1.3"
},
"@typescript-eslint/typescript-estree": {
"minimatch": "^9.0.9"
},
"rimraf": {
"minimatch": "^3.1.3"
},
"glob": {
"minimatch": "^3.1.3"
},
"nx": {
"minimatch": "^10.2.5"
},
"@nx/devkit": {
"minimatch": "^10.2.5"
},
"test-exclude": {
"minimatch": "^3.1.3"
},
"eslint-plugin-import": {
"minimatch": "^3.1.3"
},
"eslint-plugin-jsx-a11y": {
"minimatch": "^3.1.3"
},
"eslint-plugin-react": {
"minimatch": "^3.1.3"
}
}
}