2020-04-19 14:41:12 +03:00
|
|
|
{
|
|
|
|
"name": "health-passport-reference",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "",
|
2020-04-19 21:12:09 +03:00
|
|
|
"main": "dist/src/server.js",
|
2020-04-19 14:41:12 +03:00
|
|
|
"browserslist": [
|
|
|
|
"last 1 Chrome versions"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2020-04-19 21:12:09 +03:00
|
|
|
"dev": "nodemon --exec ts-node ./src/server.ts",
|
2020-04-20 03:15:19 +03:00
|
|
|
"dev-ui": "npm run qr-static && parcel watch ./src/*.html --out-dir dist/static",
|
2020-04-20 17:19:32 +03:00
|
|
|
"lint-ui": "tslint -c tslint.json -p tsconfig.ui.json",
|
|
|
|
"lint": "tslint -c tslint.json -p tsconfig.json",
|
2020-04-27 01:00:53 +03:00
|
|
|
"cp-static": "cp -r node_modules/qr-scanner/qr-scanner-worker.min.js* src/img/ dist/static",
|
|
|
|
"build-ui": "npm run cp-static && parcel build ./src/*.html --out-dir dist/static",
|
2020-04-19 14:41:12 +03:00
|
|
|
"build": "tsc",
|
2020-04-19 21:12:09 +03:00
|
|
|
"start": "node ./dist/src/server",
|
2020-04-19 14:41:12 +03:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
|
|
|
"@decentralized-identity/sidetree": "git+https://github.com/decentralized-identity/sidetree.git",
|
2020-04-24 02:32:48 +03:00
|
|
|
"@types/react": "^16.9.34",
|
|
|
|
"@types/react-dom": "^16.9.6",
|
2020-04-19 14:41:12 +03:00
|
|
|
"axios": "^0.19.2",
|
2020-04-25 19:56:27 +03:00
|
|
|
"bootstrap": "^4.4.1",
|
2020-04-19 14:41:12 +03:00
|
|
|
"cors": "^2.8.5",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
"fhirclient": "^2.3.1",
|
|
|
|
"multihashes": "^0.4.19",
|
2020-04-19 21:12:09 +03:00
|
|
|
"qr-scanner": "^1.1.1",
|
|
|
|
"qrcode": "^1.4.4",
|
2020-04-24 02:32:48 +03:00
|
|
|
"querystring": "^0.2.0",
|
|
|
|
"react": "^16.13.1",
|
2020-04-25 19:56:27 +03:00
|
|
|
"react-dom": "^16.13.1",
|
|
|
|
"reactstrap": "^8.4.1"
|
2020-04-19 14:41:12 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/express": "^4.17.6",
|
|
|
|
"@types/node": "^13.11.1",
|
2020-04-25 19:56:27 +03:00
|
|
|
"@types/reactstrap": "^8.4.2",
|
2020-04-19 14:41:12 +03:00
|
|
|
"did-jwt": "^4.2.0",
|
|
|
|
"jose": "^1.25.2",
|
|
|
|
"jose-jwe-jws": "^0.2.2",
|
|
|
|
"nodemon": "^2.0.3",
|
|
|
|
"parcel-bundler": "^1.12.4",
|
|
|
|
"secp256k1": "^4.0.0",
|
|
|
|
"ts-node": "^8.8.2",
|
|
|
|
"tslint": "^6.1.1",
|
|
|
|
"tslint-config-standard": "^9.0.0",
|
|
|
|
"typescript": "^3.8.3"
|
|
|
|
}
|
|
|
|
}
|