-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.39 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@akashnetwork/tx-signer",
"version": "1.2.0",
"description": "Internal transaction signing service",
"license": "Apache-2.0",
"author": "Akash Network",
"main": "dist/server.js",
"scripts": {
"build": "NODE_ENV=production tsup",
"build:container": "dc build tx-signer",
"dev": "npm run start",
"dev-nodc": "npm run start",
"format": "prettier --write ./*.{ts,js,json} **/*.{ts,js,json}",
"lint": "eslint .",
"prod": "node --permission --allow-fs-read=./dist/ --allow-fs-read=./env/ --allow-fs-read=./node_modules/ --allow-fs-read=../../node_modules/ --allow-fs-read=../../packages/env-loader/ --enable-source-maps --require ./dist/instrumentation.js ./dist/server.js",
"start": "tsup --watch",
"start:dev": "tsup src/server.ts --watch",
"test": "vitest run --project unit --project functional",
"test:cov": "vitest run --project unit --project functional --coverage",
"test:functional": "vitest run --project functional",
"test:unit": "vitest run --project unit"
},
"dependencies": {
"@akashnetwork/chain-sdk": "1.0.0-alpha.44",
"@akashnetwork/env-loader": "*",
"@akashnetwork/http-sdk": "*",
"@akashnetwork/instrumentation": "*",
"@akashnetwork/logging": "*",
"@cosmjs/amino": "~0.38.0",
"@cosmjs/crypto": "~0.38.0",
"@cosmjs/encoding": "~0.38.0",
"@cosmjs/proto-signing": "~0.38.0",
"@cosmjs/stargate": "~0.38.0",
"@cosmjs/tendermint-rpc": "~0.38.0",
"@hono/node-server": "1.13.7",
"@hono/otel": "~0.4.0",
"@hono/zod-openapi": "0.18.4",
"@opentelemetry/api": "^1.9.0",
"cockatiel": "^3.2.1",
"cosmjs-types": "~0.11.0",
"hono": "4.6.12",
"http-errors": "^2.0.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"zod": "3.*"
},
"devDependencies": {
"@akashnetwork/dev-config": "*",
"@akashnetwork/docker": "*",
"@akashnetwork/releaser": "*",
"@faker-js/faker": "^8.4.1",
"@swc/core": "^1.15.10",
"@types/lodash": "^4.17.0",
"@types/node": "^22.13.11",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.39.5",
"eslint-config-next": "^15.5.20",
"eslint-plugin-simple-import-sort": "^13.0.0",
"nock": "^14.0.4",
"prettier": "^3.3.0",
"tsup": "^8.5.1",
"typescript": "~5.8.2",
"vitest": "^4.1.5",
"vitest-mock-extended": "^4.0.0"
}
}