-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.99 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "nuxt-fhir",
"version": "0.0.1",
"description": "Fhir server for Nuxt based on Medplum",
"repository": "DevJoghurt/nuxt-fhir",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:app": "node ./dev/server.js",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"redis": "./.local/redis.bat",
"postgres": "./.local/postgres.bat"
},
"dependencies": {
"@nuxt/kit": "3.12.3",
"@medplum/core": "3.2.1",
"@medplum/definitions": "3.2.1",
"@medplum/fhir-router": "3.2.1",
"@medplum/app": "3.2.1",
"ioredis": "5.4.1",
"bcryptjs": "2.4.3",
"jose": "5.6.3",
"jszip": "3.10.1",
"pg": "8.12.0",
"rate-limit-redis": "4.2.0",
"rfc6902": "5.1.1",
"validator": "13.12.0",
"express": "4.19.2",
"express-rate-limit": "7.3.1",
"express-validator": "7.1.0",
"bullmq": "5.9.0",
"ws": "8.18.0",
"@opentelemetry/api": "^1.9.0",
"hibp": "14.1.1",
"cookie-parser": "1.4.6",
"otplib": "12.0.1",
"node-fetch": "2.7.0",
"nodemailer": "6.9.14",
"uuid": "10.0.0",
"cors": "2.8.5",
"compression": "1.7.4",
"bytes": "3.1.2",
"cron-validator": "1.3.1",
"qrcode": "1.5.3",
"ua-parser-js": "1.0.38",
"fsh-sushi": "^3.11.0",
"gofsh": "^2.3.1"
},
"devDependencies": {
"@medplum/fhirtypes": "3.2.1",
"@types/pg": "8.11.6",
"@types/bcryptjs": "2.4.6",
"@types/validator": "13.12.0",
"@types/cookie-parser": "1.4.7",
"@types/ws": "8.5.11",
"@types/node-fetch": "2.6.11",
"@types/nodemailer": "6.4.15",
"@types/uuid": "10.0.0",
"@types/cors": "2.8.17",
"@types/compression": "1.7.5",
"@types/bytes": "3.1.4",
"@nuxt/devtools": "1.3.9",
"@nuxt/eslint-config": "0.3.13",
"@nuxt/module-builder": "0.8.1",
"@nuxt/schema": "3.12.3",
"@nuxt/test-utils": "3.13.1",
"supertest": "6.3.4",
"@types/node": "20.14.10",
"@types/express": "4.17.21",
"@types/qrcode": "1.5.5",
"@types/ua-parser-js": "0.7.39",
"@types/supertest": "6.0.2",
"changelogen": "^0.5.5",
"eslint": "9.7.0",
"nuxt": "3.12.3",
"typescript": "latest",
"vitest": "2.0.3",
"vue-tsc": "2.0.26",
"openapi3-ts": "4.3.3",
"happy-dom": "14.12.3"
},
"engines": {
"node": ">=18.0.0"
}
}