forked from medplum/medplum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.75 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
{
"name": "root",
"version": "2.0.24",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"test": "turbo run test",
"lint": "eslint packages/",
"prettier": "prettier --write .",
"cyclonedx": "cyclonedx-npm --omit dev --omit optional --omit peer"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/preset-env": "7.22.5",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@cyclonedx/cyclonedx-npm": "1.12.1",
"@types/jest": "29.5.2",
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"babel-jest": "29.5.0",
"babel-preset-vite": "1.1.0",
"cross-env": "7.0.3",
"esbuild": "0.18.6",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsdoc": "46.2.6",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "4.6.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"npm-check-updates": "16.10.12",
"nyc": "15.1.0",
"prettier": "2.8.8",
"rimraf": "5.0.1",
"source-map-explorer": "2.5.3",
"ts-node": "10.9.1",
"tslib": "2.5.3",
"turbo": "1.10.3",
"typescript": "5.1.3"
},
"overrides": {
"esbuild": "0.18.6",
"got": "11.8.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"trim": "0.0.3"
},
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"eslintConfig": {
"root": true,
"extends": [
"./packages/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.base.json"
}
}
}