forked from smart-on-fhir/health-cards-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "health-passport-reference",
"version": "1.0.0",
"description": "",
"main": "dist/src/server.js",
"browserslist": [
"last 1 Chrome versions"
],
"scripts": {
"dev": "nodemon --exec ts-node ./src/server.ts",
"cp-static": "cp -r node_modules/qr-scanner/qr-scanner-worker.min.js* src/img/ dist/static",
"dev-ui": "npm run cp-static && parcel watch ./src/*.html --out-dir dist/static",
"lint-ui": "tslint -c tslint.json -p tsconfig.ui.json",
"lint": "tslint -c tslint.json -p tsconfig.json",
"build-ui": "npm run cp-static && parcel build ./src/*.html --out-dir dist/static",
"build": "tsc",
"start": "node ./dist/src/server",
"test": "jest ./test/"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node-jose": "^1.1.5",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/reactstrap": "^8.5.2",
"axios": "^0.19.2",
"base-64": "^0.1.0",
"base64url": "^3.0.1",
"bootstrap": "^4.5.3",
"canonicalize": "^1.0.5",
"cbor": "^5.1.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"csv-parse": "^4.12.0",
"deepcopy": "^2.1.0",
"express": "^4.17.1",
"fhirclient": "^2.3.10",
"jose": "^1.28.0",
"jose-jwe-jws": "^0.2.2",
"js-sha256": "^0.9.0",
"json-canonicalize": "^1.0.3",
"jsonschema": "^1.4.0",
"multihashes": "^0.4.21",
"node-jose": "^2.0.0",
"pako": "^2.0.3",
"qr-scanner": "^1.2.0",
"qrcode": "^1.4.4",
"querystring": "^0.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"reactstrap": "^8.6.0",
"tslint-react": "^5.0.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.1",
"@types/express": "^4.17.8",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.30",
"jest": "^26.6.2",
"nodemon": "^2.0.6",
"parcel-bundler": "^1.12.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.9.7"
}
}