41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "mock-lockdrop-watcher",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Mock GraphQL server for lockdrop watcher testing",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"postbuild": "cp src/schema.graphql dist/schema.graphql",
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node src/index.ts",
|
|
"generate-participants": "node dist/participant-generator.js",
|
|
"lint": "eslint --max-warnings=0 .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"dependencies": {
|
|
"apollo-server-express": "^3.12.1",
|
|
"express": "^4.19.2",
|
|
"graphql": "^16.9.0",
|
|
"@cosmjs/crypto": "^0.33.1",
|
|
"@cosmjs/encoding": "^0.33.1",
|
|
"ethers": "^6.13.4",
|
|
"urbit-ob": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.14.10",
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-semistandard": "^15.0.1",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.5.3"
|
|
}
|
|
}
|