forked from soroswap/zephyr-programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (26 loc) · 785 Bytes
/
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
{
"name": "zephyr-programs-scripts",
"version": "1.0.0",
"description": "Zephyr Programs for Soroswap",
"scripts": {
"build": "tsc",
"pairs:catchups:generate": "yarn build && ENVIRONMENT=prod node --trace-deprecation dist/pairs-catchups-generator.js",
"pairs:catchups:generate:dev": "yarn build && ENVIRONMENT=dev node --trace-deprecation dist/pairs-catchups-generator.js",
"test:dev": "ENVIRONMENT=dev jest",
"test": "ENVIRONMENT=prod jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@stellar/stellar-sdk": "^12.1.0",
"@types/node": "^20.14.0",
"dotenv": "^16.4.5",
"mercury-sdk": "0.2.6"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}