-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.61 KB
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
54
{
"name": "operator-reward-distributor",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts",
"serve": "tsx src/server/app.ts",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"health": "tsx src/cli/health.ts",
"test": "vitest run",
"test:watch": "vitest",
"migrate": "tsx src/db/migrate.ts && echo 'Migrations complete'"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/better-sqlite3": "^7.6.13",
"@types/bn.js": "^5",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.3.0",
"pino-pretty": "^13.1.1",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@polkadot/api": "^16.4.4",
"@polkadot/keyring": "^13.5.5",
"@polkadot/util": "^13.5.5",
"better-sqlite3": "^12.2.0",
"bn.js": "^5.2.2",
"dotenv": "^17.2.1",
"fastify": "^5.0.0",
"pino": "^9.9.0",
"zod": "^4.0.17"
}
}