-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
60 lines (60 loc) · 2.13 KB
/
package.json
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
{
"name": "@akashnetwork/provider-proxy",
"version": "1.4.3",
"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/* && npx tsc && esbuild src/server.ts --bundle --sourcemap --platform=node --target=node20.14.0 --outdir=dist",
"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:cov": "jest --selectProjects unit functional --coverage",
"test:functional": "jest --selectProjects functional",
"test:functional:cov": "jest --selectProjects functional --coverage",
"test:functional:watch": "jest --selectProjects functional --watch",
"test:unit": "jest --selectProjects unit"
},
"dependencies": {
"@akashnetwork/logging": "*",
"@akashnetwork/net": "*",
"@hono/node-server": "^1.13.8",
"@hono/zod-openapi": "^0.18.4",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/instrumentation": "^0.57.1",
"@opentelemetry/instrumentation-http": "^0.57.1",
"@opentelemetry/sdk-trace-node": "^1.30.1",
"async-sema": "^3.1.1",
"bech32": "^2.0.0",
"hono": "4.6.12",
"lru-cache": "^11.0.2",
"uuid": "^9.0.0",
"ws": "^7.5.9"
},
"devDependencies": {
"@akashnetwork/dev-config": "*",
"@akashnetwork/releaser": "*",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@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",
"node-forge": "^1.3.1",
"nodemon": "^3.1.9",
"prettier": "^3.3.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"typescript": "5.1.3"
}
}