forked from medplum/medplum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.07 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
{
"name": "root",
"version": "2.0.12",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "eslint packages/",
"prettier": "prettier --write ."
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.0",
"@emotion/babel-plugin": "11.10.6",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-terser": "0.4.0",
"@rollup/plugin-typescript": "11.0.0",
"@types/jest": "29.5.0",
"@types/node": "18.15.10",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"babel-jest": "29.5.0",
"cross-env": "7.0.3",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.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.8.0",
"nyc": "15.1.0",
"prettier": "2.8.7",
"rimraf": "4.4.1",
"rollup": "3.20.2",
"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.0",
"turbo": "1.8.5",
"typescript": "5.0.2",
"webpack": "5.76.3",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.13.1"
},
"overrides": {
"@docusaurus/core": {
"react": "^18",
"react-dom": "^18"
},
"@docusaurus/preset-classic": {
"react": "^18",
"react-dom": "^18"
}
},
"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: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": "^_"
}
],
"eqeqeq": ["error", "always"],
"prefer-promise-reject-errors": "error"
},
"ignorePatterns": [
"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"
]
}
}