forked from medplum/medplum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.46 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
{
"name": "root",
"version": "2.0.31",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"test": "turbo run test",
"lint": "eslint .",
"prettier": "prettier --write .",
"cyclonedx": "cyclonedx-npm --omit dev --omit optional --omit peer"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@cyclonedx/cyclonedx-npm": "1.13.1",
"@types/jest": "29.5.3",
"@types/node": "20.5.1",
"babel-jest": "29.6.3",
"babel-preset-vite": "1.1.0",
"cross-env": "7.0.3",
"esbuild": "0.19.2",
"identity-obj-proxy": "3.0.0",
"jest": "29.6.3",
"jest-environment-jsdom": "29.6.3",
"npm-check-updates": "16.12.2",
"nyc": "15.1.0",
"rimraf": "5.0.1",
"source-map-explorer": "2.5.3",
"ts-node": "10.9.1",
"tslib": "2.6.2",
"turbo": "1.10.12",
"typescript": "5.1.6"
},
"overrides": {
"esbuild": "0.19.2",
"got": "11.8.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"trim": "0.0.3"
},
"eslintConfig": {
"root": true,
"extends": [
"@medplum/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.base.json"
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
}
}