diff --git a/backend/package.json b/backend/package.json index b05ae08e0..5ad6ad42f 100644 --- a/backend/package.json +++ b/backend/package.json @@ -6,7 +6,7 @@ "homepage": "https://mempool.space", "repository": { "type": "git", - "url": "git+https://github.com/mempool/mempool.git" + "url": "git+https://github.com/mempool/mempool" }, "bugs": { "url": "https://github.com/mempool/mempool/issues" @@ -24,7 +24,6 @@ "start": "npm run build && node dist/index.js", "test": "echo \"Error: no test specified\" && exit 1" }, - "license": "MIT", "dependencies": { "compression": "^1.7.4", "express": "^4.17.1", diff --git a/frontend/package.json b/frontend/package.json index f618314d8..86ab48c4c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,24 @@ { - "name": "mempoolspace", - "version": "0.0.0", + "name": "mempool-frontend", + "version": "2.0.0", + "description": "Bitcoin mempool visualizer and blockchain explorer backend", + "license": "MIT", + "homepage": "https://mempool.space", + "repository": { + "type": "git", + "url": "git+https://github.com/mempool/mempool" + }, + "bugs": { + "url": "https://github.com/mempool/mempool/issues" + }, + "keywords": [ + "bitcoin", + "mempool", + "blockchain", + "explorer", + "liquid" + ], + "main": "index.ts", "scripts": { "ng": "ng", "start": "ng serve --proxy-config proxy.conf.json", @@ -9,7 +27,6 @@ "lint": "ng lint", "e2e": "ng e2e" }, - "private": true, "dependencies": { "@angular/animations": "~9.0.0", "@angular/common": "~9.0.0", diff --git a/package.json b/package.json new file mode 100644 index 000000000..b6bb7a75f --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "mempool", + "version": "2.0.0", + "description": "Bitcoin mempool visualizer and blockchain explorer", + "license": "MIT", + "homepage": "https://mempool.space", + "repository": { + "type": "git", + "url": "git+https://github.com/mempool/mempool" + }, + "bugs": { + "url": "https://github.com/mempool/mempool/issues" + }, + "keywords": [ + "bitcoin", + "mempool", + "blockchain", + "explorer", + "liquid" + ], + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "dependencies": { + "mempool-frontend": "2.0.0", + "mempool-backend": "2.0.0" + } +}