-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.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
{
"name": "console-provider-proxy",
"version": "1.0.12",
"description": "Proxy that allows communication between the Web UI and providers",
"license": "Apache-2.0",
"author": "Akash Network",
"main": "main.js",
"scripts": {
"build": "npx tsc",
"format": "prettier --write ./*.{ts,js,json} **/*.{ts,js,json}",
"lint": "eslint .",
"start": "npm run build && node ./dist/server.js",
"dev": "npm run start",
"dev-nodc": "npm run start",
"prod": "node ./dist/server.js"
},
"dependencies": {
"axios": "^1.7.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"node-fetch": "^2.6.9",
"uuid": "^9.0.0",
"ws": "^7.5.9"
},
"devDependencies": {
"@akashnetwork/dev-config": "*",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.3.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"typescript": "5.1.3"
}
}