-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "medplum-demo-bots",
"version": "3.2.27",
"description": "Medplum Demo Bots",
"license": "Apache-2.0",
"author": "Medplum <[email protected]>",
"type": "module",
"scripts": {
"build": "npm run clean && npm run lint && tsc && node --no-warnings esbuild-script.mjs",
"clean": "rimraf dist",
"lint": "eslint src/",
"prettier": "prettier --write .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@medplum/eslint-config"
],
"root": true
},
"devDependencies": {
"@medplum/bot-layer": "3.2.27",
"@medplum/cli": "3.2.27",
"@medplum/core": "3.2.27",
"@medplum/eslint-config": "3.2.27",
"@medplum/fhirtypes": "3.2.27",
"@medplum/mock": "3.2.27",
"@types/node": "22.10.2",
"@types/node-fetch": "2.6.12",
"@types/ssh2-sftp-client": "9.0.4",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"esbuild": "0.24.2",
"fast-glob": "3.3.2",
"form-data": "4.0.1",
"node-fetch": "2.7.0",
"pdfmake": "0.2.17",
"rimraf": "5.0.9",
"ssh2-sftp-client": "11.0.0",
"stripe": "17.5.0",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}