forked from medplum/medplum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 3.54 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "root",
"version": "2.0.21",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"scripts": {
"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.1",
"@babel/preset-env": "7.22.4",
"@babel/preset-react": "7.22.3",
"@babel/preset-typescript": "7.21.5",
"@cyclonedx/cyclonedx-npm": "1.12.0",
"@emotion/babel-plugin": "11.11.0",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "11.1.1",
"@types/jest": "29.5.2",
"@types/node": "20.2.5",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"babel-jest": "29.5.0",
"cross-env": "7.0.3",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsdoc": "46.1.0",
"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",
"rollup": "3.23.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"source-map-explorer": "2.5.3",
"ts-node": "10.9.1",
"tslib": "2.5.2",
"turbo": "1.10.0",
"typescript": "5.0.4",
"webpack": "5.84.1",
"webpack-cli": "5.1.1",
"webpack-dev-server": "4.15.0"
},
"overrides": {
"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,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.base.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jsdoc/recommended-typescript-error",
"plugin:prettier/recommended",
"plugin:react-hooks/recommended"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": [
"error",
{
"allowExpressions": true
}
],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"curly": [
"error",
"all"
],
"eqeqeq": [
"error",
"always"
],
"jsdoc/check-tag-names": [
"error",
{
"definedTags": [
"category",
"experimental",
"ts-ignore"
]
}
],
"jsdoc/require-jsdoc": 0,
"prefer-promise-reject-errors": "error"
},
"ignorePatterns": [
"coverage",
"dist",
"node_modules",
"packages/**/dist/",
"packages/docs/build/",
"packages/docs/docusaurus.config.js",
"packages/docs/sidebars.js",
"babel.config.js",
"jest.sequencer.js",
"package-lock.json",
"rollup.config.mjs",
"webpack.config.js"
]
}
}