forked from medplum/medplum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.1 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
{
"name": "root",
"version": "3.2.22",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build --filter=!@medplum/docs",
"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",
"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": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@medplum/eslint-config"
],
"root": true
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "7.26.0",
"@microsoft/api-documenter": "7.25.21",
"@microsoft/api-extractor": "7.47.11",
"@types/node": "22.9.0",
"babel-jest": "29.7.0",
"babel-preset-vite": "1.1.3",
"cross-env": "7.0.3",
"danger": "12.3.3",
"esbuild": "0.24.0",
"formidable": "3.5.2",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "25.0.1",
"npm-check-updates": "17.1.10",
"nyc": "17.1.0",
"prettier": "3.3.3",
"rimraf": "5.0.9",
"sort-package-json": "2.10.1",
"source-map-explorer": "2.5.3",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"turbo": "2.2.3",
"typescript": "5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"es5-ext": "0.10.53",
"esbuild": "0.24.0",
"formidable": "3.5.2",
"got": "11.8.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"sourcemap-codec": "npm:@jridgewell/[email protected]",
"trim": "0.0.3"
}
}