forked from akash-network/console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.45 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.45 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
69
{
"name": "@akashnetwork/provider-proxy",
"version": "2.9.11",
"description": "Proxy that allows communication between the Web UI and providers",
"license": "Apache-2.0",
"author": "Akash Network",
"main": "main.js",
"scripts": {
"build": "rm -rf dist/* && tsc -p tsconfig.build.json && esbuild src/server.ts --bundle --sourcemap --platform=node --target=$(node -v | sed 's/^v/node/') --outdir=dist",
"build:container": "dc build provider-proxy",
"dev": "nodemon src/server.ts",
"dev:inspect": "nodemon --exec node --inspect -r ts-node/register src/server.ts",
"dev-nodc": "npm run dev",
"format": "prettier --write ./*.{ts,js,json} **/*.{ts,js,json}",
"lint": "eslint .",
"prod": "node ./dist/server.js",
"release": "release-it",
"start": "npm run build && node ./dist/server.js",
"test": "jest --selectProjects unit functional",
"test:cov": "jest --selectProjects unit functional --coverage --reporters=default --reporters=jest-junit",
"test:e2e": "jest --selectProjects e2e",
"test:functional": "jest --selectProjects functional",
"test:unit": "jest --selectProjects unit"
},
"dependencies": {
"@akashnetwork/chain-sdk": "1.0.0-alpha.21",
"@akashnetwork/env-loader": "*",
"@akashnetwork/logging": "*",
"@akashnetwork/net": "*",
"@cosmjs/encoding": "~0.36.1",
"@hono/node-server": "^1.19.0",
"@hono/otel": "~0.4.0",
"@hono/zod-openapi": "^0.18.4",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.57.1",
"hono": "4.6.12",
"lru-cache": "^11.0.2",
"uuid": "^9.0.0",
"ws": "^7.5.9",
"zod": "3.*"
},
"devDependencies": {
"@akashnetwork/dev-config": "*",
"@akashnetwork/docker": "*",
"@akashnetwork/releaser": "*",
"@cosmjs/amino": "~0.36.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/node": "^22.13.11",
"@types/node-forge": "^1.3.11",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"esbuild": "^0.24.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-mock-extended": "^4.0.0",
"node-forge": "^1.3.1",
"nodemon": "^3.1.9",
"prettier": "^3.3.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "~5.8.2"
}
}