-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
53 lines (53 loc) · 1.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "fname-registry",
"version": "0.1.0",
"description": "fname authority",
"main": "build/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"ts-node": "TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true node --experimental-specifier-resolution=node --loader ts-node/esm",
"start": "npm run ts-node src/index.ts",
"build": "rm -rf ./build && tsc --project ./tsconfig.json",
"test": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' ENVIRONMENT=test jest --detectOpenHandles --forceExit",
"lint": "eslint . --ext .ts",
"abi": "typechain --node16-modules --target ethers-v6 --out-dir src/abi src/abi/*.abi",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@chainlink/ccip-read-server": "^0.2.1",
"@farcaster/hub-nodejs": "^0.12.7",
"body-parser": "^1.20.2",
"dd-trace": "^5.30.0",
"dotenv": "^16.4.7",
"ethers": "^6.13.5",
"express": "^4.21.2",
"kysely": "^0.27.5",
"kysely-postgres-js": "^2.0.0",
"neverthrow": "^8.1.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"pm2": "^5.4.3",
"postgres": "^3.4.5",
"viem": "^2.22.2"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.7.2"
}
}