forked from medplum/medplum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.87 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
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
{
"name": "root",
"version": "5.1.23",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build --filter=!@medplum/docs --filter=!./examples/*",
"build:all": "turbo run build",
"build:docs": "turbo run build --filter=@medplum/docs",
"build:fast": "turbo run build --filter=@medplum/app --filter=@medplum/server",
"clean": "turbo run clean",
"lint": "turbo run lint --filter=!@medplum/docs",
"lint:fix": "turbo run lint:fix --filter=!@medplum/docs",
"prettier": "prettier --write \"**/*.{ts,tsx,cts,mts,js,jsx,cjs,mjs,json}\"",
"sort-package-json": "sort-package-json package.json \"packages/*/package.json\" \"examples/*/package.json\"",
"test": "turbo run test --filter=!@medplum/docs"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
],
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"overrides": {
"esbuild": "0.28.1",
"typescript": "6.0.3",
"vite": "8.1.0",
"whatwg-url": "14.0.0"
},
"devDependencies": {
"@microsoft/api-documenter": "7.30.7",
"@microsoft/api-extractor": "7.58.9",
"@types/jsdom": "28.0.3",
"@types/node": "22.20.0",
"@vitejs/plugin-react": "6.0.3",
"cross-env": "10.1.0",
"esbuild": "0.28.1",
"formidable": "3.5.4",
"jsdom": "29.1.1",
"npm-check-updates": "22.2.7",
"nyc": "18.0.0",
"prettier": "3.8.4",
"prettier-plugin-organize-imports": "4.3.0",
"rimraf": "6.1.3",
"shx": "0.4.0",
"sort-package-json": "4.0.0",
"source-map-explorer": "2.5.3",
"tslib": "2.8.1",
"tsx": "4.22.4",
"turbo": "2.10.0",
"typescript": "6.0.3",
"vite": "8.1.0",
"vitest": "4.1.9",
"vitest-websocket-mock": "0.5.0"
},
"packageManager": "npm@10.9.8",
"engines": {
"node": ">=22.18.0 <23.0.0 || >=24.2.0 <25.0.0"
}
}