-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.04 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
{
"name": "blockchain-cert",
"version": "1.0.0",
"private": true,
"description": "Certificador de documentos on-chain sobre Polygon Amoy Testnet. El proyecto actual funciona como un MVP funcional para certificar documentos (texto o archivos), calcular su hash SHA-256, registrarlo en un smart contract Solidity y conservar el historial en PostgreSQL.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently -n DOCKER,FRONTEND -c blue,green \"npm run dev:docker\" \"npm run dev:frontend\"",
"dev:docker": "cd backend && docker compose up",
"dev:frontend": "cd frontend && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/git-devtest/blockchain-cert.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/git-devtest/blockchain-cert/issues"
},
"homepage": "https://github.com/git-devtest/blockchain-cert#readme",
"devDependencies": {
"concurrently": "^10.0.3"
}
}