-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 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": "provider-template",
"version": "0.0.1",
"description": "Base Provider template for new Protocols",
"homepage": "https://github.com/Forest-Protocols/provider-template#readme",
"bugs": {
"url": "https://github.com/Forest-Protocols/provider-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Forest-Protocols/provider-template.git"
},
"license": "MIT",
"author": "Forest Network Development Team",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "tsc && eslint",
"dev": "tsup --sourcemap --silent --onSuccess 'tsc-alias -p tsconfig.json -f && node dist/index.js'",
"start": "node dist/index.js",
"build": "tsc && tsup",
"clean": "rm -rf dist",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.30.1",
"eslint": "^9.28.0",
"tsc-alias": "^1.8.10",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.34.0"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.32.1",
"@forest-protocols/sdk": "^3.5.0",
"ansis": "^3.7.0",
"axios": "^1.10.0",
"drizzle-orm": "^0.38.3",
"express": "^4.21.2",
"pg": "^8.13.1",
"unique-names-generator": "^4.7.1",
"viem": "^2.30.6",
"winston": "^3.17.0",
"zod": "^3.24.1",
"zod-validation-error": "^3.4.0"
}
}