-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.69 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
55
{
"name": "validator-template",
"version": "1.0.0",
"description": "Base Validator template that Protocol Owners need to extend",
"homepage": "https://github.com/Forest-Protocols/validator-template#readme",
"bugs": {
"url": "https://github.com/Forest-Protocols/validator-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Forest-Protocols/validator-template.git"
},
"license": "MIT",
"author": "Forest Network Development Team",
"type": "module",
"main": "dist/index.js",
"scripts": {
"lint": "tsc && eslint",
"dev": "tsup --sourcemap --silent --onSuccess 'tsc-alias -p tsconfig.json -f && node dist/index.js'",
"watch": "tsup --silent --watch --onSuccess 'tsc-alias -p tsconfig.json -f && node dist/index.js'",
"start": "node dist/index.js",
"build": "tsup --onSuccess 'tsc-alias -p tsconfig.json -f'",
"clean": "rm -rf dist",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.8",
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.30.5",
"eslint": "^9.21.0",
"tsc-alias": "^1.8.11",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.38.3",
"@forest-protocols/sdk": "^3.3.0",
"@supabase/supabase-js": "^2.50.0",
"ansis": "^3.17.0",
"async-mutex": "^0.5.0",
"axios": "^1.9.0",
"drizzle-orm": "^0.40.0",
"nanoid": "^5.1.2",
"pg": "^8.13.3",
"uuid": "^11.1.0",
"viem": "^2.30.6",
"winston": "^3.17.0",
"zod": "^3.24.2"
}
}