- CCIP/trustless bridge contracts, GRU tokens, DEX/PMM tests, reserve vault. - Token-aggregation service routes, planner, chain config, relay env templates. - Config snapshots and multi-chain deployment markdown updates. - gitignore services/btc-intake/dist/ (tsc output); do not track dist. Run forge build && forge test before deploy (large solc graph). Made-with: Cursor
44 lines
1012 B
JSON
44 lines
1012 B
JSON
{
|
|
"name": "@emoney/api-tests",
|
|
"version": "1.0.0",
|
|
"description": "API integration and contract tests",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:ci": "jest --runInBand",
|
|
"test:integration": "jest --testPathPattern=integration",
|
|
"test:contract": "jest --testPathPattern=contract",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.2",
|
|
"graphql": "^16.8.1",
|
|
"graphql-request": "^6.1.0",
|
|
"ajv": "^8.12.0",
|
|
"ajv-formats": "^2.1.1",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.11",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.10.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"**/*.test.ts"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/"
|
|
],
|
|
"collectCoverageFrom": [
|
|
"api/services/**/*.ts",
|
|
"!**/*.d.ts",
|
|
"!**/node_modules/**"
|
|
]
|
|
}
|
|
}
|