mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-04-18 03:00:22 -04:00
* fix: remove unused package * chore: upgrade patch version changes * chore: upgrade minor versions
82 lines
2.4 KiB
JSON
82 lines
2.4 KiB
JSON
{
|
|
"name": "farcaster-node",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "rm -rf ./build && tsc --project ./tsconfig.json && tsconfig-replace-paths --project tsconfig.json",
|
|
"dev": "nodemon",
|
|
"prepare": "husky install",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"server": "npm run build",
|
|
"start": "npm run server",
|
|
"test": "rm -rf ./build && NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"test:ci": "ENVIRONMENT=test NODE_OPTIONS=--experimental-vm-modules jest src/ --ci --runInBand --forceExit --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/farcasterxyz/node-playground.git"
|
|
},
|
|
"author": "",
|
|
"license": "",
|
|
"bugs": {
|
|
"url": "https://github.com/farcasterxyz/node-playground/issues"
|
|
},
|
|
"homepage": "https://github.com/farcasterxyz/node-playground#readme",
|
|
"engines": {
|
|
"node": "^16.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/faker": "5.5.9",
|
|
"@types/jest": "^29.0.2",
|
|
"@types/node": "^18.7.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
"@typescript-eslint/parser": "^5.33.1",
|
|
"eslint": "^8.22.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"fishery": "^2.2.2",
|
|
"husky": "^8.0.1",
|
|
"jest": "^29.0.3",
|
|
"lint-staged": "^13.0.3",
|
|
"nodemon": "^2.0.19",
|
|
"prettier": "^2.6.0",
|
|
"ts-jest": "^29.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-replace-paths": "^0.0.11",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"dependencies": {
|
|
"@chainsafe/libp2p-gossipsub": "^4.1.1",
|
|
"@chainsafe/libp2p-noise": "^7.0.3",
|
|
"@libp2p/bootstrap": "^2.0.0",
|
|
"@libp2p/interface-peer-info": "^1.0.2",
|
|
"@libp2p/interfaces": "^3.0.3",
|
|
"@libp2p/mplex": "^5.1.1",
|
|
"@libp2p/tcp": "^3.0.6",
|
|
"@multiformats/multiaddr": "^10.4.3",
|
|
"@noble/ed25519": "^1.6.1",
|
|
"caip": "^1.1.0",
|
|
"canonicalize": "^1.0.8",
|
|
"colors": "^1.4.0",
|
|
"ethereum-cryptography": "^1.1.2",
|
|
"ethers": "^5.6.1",
|
|
"faker": "5.5.3",
|
|
"jayson": "^4.0.0",
|
|
"libp2p": "^0.38.0",
|
|
"log-update": "5.0.1",
|
|
"neverthrow": "^5.0.0",
|
|
"node-fetch": "^3.2.10",
|
|
"tiny-typed-emitter": "^2.1.0",
|
|
"undici": "^5.10.0",
|
|
"uri-js": "^4.4.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": "eslint --cache --fix"
|
|
}
|
|
}
|