-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.54 KB
/
package.json
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": "soroswap-aggregator",
"version": "1.0.0",
"description": "Deployment for Soroswap Aggregator",
"type": "module",
"scripts": {
"build": "tsc",
"deploy": "tsc && node dist/deploy.js",
"deploy-phoenix-adapter": "tsc && node dist/deploy_phoenix_adapter.js",
"deploy-comet-adapter": "tsc && node dist/deploy_comet_adapter.js",
"add-liquidity:phoenix": "tsc && node dist/protocols/phoenix/add_liquidity.js",
"setup-protocols": "tsc && node dist/protocols/setup_protocols.js",
"test": "tsc && node dist/test.js",
"test:manual": "tsc && node dist/manual_testing/manual_tests.js",
"publish_addresses": "tsc && node dist/publish_addresses.js",
"test_adapter": "tsc && node dist/test_soroswap_adapter.js",
"test_phoenix_adapter": "tsc && node dist/test_phoenix_adapter.js",
"test_comet_adapter": "tsc && node dist/test_comet_adapter.js",
"multi_test": "tsc && node dist/multi_test.js"
},
"license": "MIT",
"devDependencies": {
"@stellar/tsconfig": "^1.0.2",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.0.0",
"dotenv": "^16.4.5"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}