-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "swarm-zim-uploader",
"version": "0.1.0",
"description": " Server that processes zim files extracted from wikipedia received by url and handles the upload to Swarm",
"main": "index.js",
"scripts": {
"build": "tsc",
"start-dev": "nodemon src/app.ts",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdgarBarrantes/swarm-zim-uploader.git"
},
"keywords": [
"swarm",
"archive",
"web",
"wikipedia"
],
"author": "Edgar Barrantes",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/EdgarBarrantes/swarm-zim-uploader/issues"
},
"homepage": "https://github.com/EdgarBarrantes/swarm-zim-uploader#readme",
"dependencies": {
"@ethersphere/bee-js": "^3.3.1",
"@types/download": "^8.0.1",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"axios": "^0.26.1",
"download": "^8.0.0",
"express": "^4.17.3",
"fetch": "^1.1.0",
"mantaray-js": "^1.0.3",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}