-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.88 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
70
71
72
73
74
75
76
77
78
{
"name": "@ethersphere/gateway-proxy",
"version": "0.17.0",
"description": "Swarm proxy server that can play role of a gateway",
"keywords": [
"bee",
"swarm",
"decentralised",
"storage",
"ethereum",
"typescript",
"p2p",
"browser",
"node"
],
"bin": {
"bee-gateway-proxy": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build",
"build": "rimraf ./build && tsc && chmod +x dist/index.js",
"start": "nodemon --config nodemon.json src/index.ts",
"start:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"depcheck": "depcheck .",
"check:types": "tsc --project tsconfig.test.json",
"test": "jest --verbose",
"bee": "bee-factory start"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"@types/request-stats": "^3.0.3",
"@types/supertest": "^6.0.3",
"depcheck": "^1.4.7",
"husky": "^9.1.7",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.0",
"rimraf": "^6.1.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@ethersphere/bee-js": "^12.0.0",
"axios": "^1.15.1",
"body-parser": "^2.2.2",
"cafe-utility": "^33.9.0",
"express": "^5.2.1",
"prom-client": "^15.1.3",
"request-stats": "^3.0.0",
"winston": "^3.19.0"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0",
"bee": "1.7.0-bbf13011"
},
"node_deb": {
"entrypoints": {
"daemon": "dist/index.js"
},
"init": "systemd",
"install_strategy": "copy",
"package_name": "gateway-proxy",
"templates": {
"systemd_service": "packaging/systemd/gateway-proxy.service"
}
}
}