mirror of
https://github.com/grafana/grafana.git
synced 2025-08-06 03:19:30 +08:00
Chore: Switch yarn 2 to plug-n-play strategy (#40300)
This commit is contained in:
@ -9,23 +9,29 @@
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@grafana/tsconfig": "^1.0.0-rc1",
|
||||
"@types/classnames": "^2.2.7",
|
||||
"@types/deep-freeze": "^0.1.1",
|
||||
"@types/grafana__slate-react": "npm:@types/slate-react@0.22.5",
|
||||
"@types/hoist-non-react-statics": "^3.3.1",
|
||||
"@types/lodash": "^4.14.123",
|
||||
"@types/react": "17.0.30",
|
||||
"@types/react-icons": "2.2.7",
|
||||
"@types/recompose": "^0.30.7",
|
||||
"@types/reselect": "2.2.0",
|
||||
"@types/slate-react": "0.22.5",
|
||||
"@types/tinycolor2": "1.4.2",
|
||||
"@wojtekmaj/enzyme-adapter-react-17": "0.6.2",
|
||||
"enzyme": "3.11.0",
|
||||
"typescript": "4.4.3"
|
||||
"sinon": "8.1.1",
|
||||
"typescript": "4.4.3",
|
||||
"webpack": "5.58.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@emotion/css": "11.1.3",
|
||||
"@emotion/react": "11.1.5",
|
||||
"@grafana/data": "8.3.0-pre",
|
||||
"@grafana/ui": "8.3.0-pre",
|
||||
"@types/classnames": "^2.2.7",
|
||||
"@types/deep-freeze": "^0.1.1",
|
||||
"@types/hoist-non-react-statics": "^3.3.1",
|
||||
"@types/lodash": "^4.14.123",
|
||||
"@types/react": "17.0.30",
|
||||
"@types/react-icons": "2.2.7",
|
||||
"@types/recompose": "^0.30.7",
|
||||
"@types/slate-react": "0.22.5",
|
||||
"chance": "^1.0.10",
|
||||
"classnames": "^2.2.5",
|
||||
"combokeys": "^3.0.0",
|
||||
@ -38,9 +44,13 @@
|
||||
"lru-memoize": "^1.1.0",
|
||||
"memoize-one": "^5.0.0",
|
||||
"moment": "2.29.1",
|
||||
"moment-timezone": "0.5.33",
|
||||
"prop-types": "15.7.2",
|
||||
"react": "17.0.1",
|
||||
"react-dom": "17.0.1",
|
||||
"react-icons": "2.2.7",
|
||||
"recompose": "^0.25.0",
|
||||
"reselect": "4.0.0",
|
||||
"tinycolor2": "1.4.1",
|
||||
"tslib": "2.3.1",
|
||||
"tween-functions": "^1.2.0"
|
||||
|
@ -1,11 +1,10 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": "node_modules/@types",
|
||||
"paths": {
|
||||
"@grafana/slate-react": ["slate-react"]
|
||||
},
|
||||
"typeRoots": ["node_modules/@types"]
|
||||
"baseUrl": ".",
|
||||
"allowJs": true,
|
||||
"jsx": "react"
|
||||
},
|
||||
"exclude": ["dist", "node_modules"],
|
||||
"extends": "@grafana/tsconfig",
|
||||
"include": ["src/**/*.ts*", "typings", "../../public/app/types/jquery/*.ts", "../../public/app/types/*.d.ts"]
|
||||
}
|
||||
|
Reference in New Issue
Block a user