-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.19 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.19 KB
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
{
"author": "Grafana Labs",
"license": "Apache-2.0",
"private": true,
"name": "grafana-scenes",
"version": "0.15.0",
"description": "Grafana framework for building dynamic dashboards",
"keywords": [
"typescript"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "http://github.com/grafana/scenes.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"./README.md",
"./CHANGELOG.md",
"LICENSE"
],
"scripts": {
"precommit": "yarn run lint-staged",
"prepare": "husky install",
"packages:publish": "lerna exec --no-private -- npm publish",
"docs": "yarn workspace website run start --port 8080",
"docs:build": "yarn turbo build --filter=website",
"docs:build:dev": "yarn turbo build:dev --filter=website",
"build": "yarn turbo build --filter=!website",
"test:scenes": "yarn workspace @grafana/scenes test --watch",
"test:scenes-react": "yarn workspace @grafana/scenes-react test --watch",
"dev": "yarn turbo dev --filter=!website",
"test": "yarn turbo test --filter=!website",
"lint": "yarn turbo lint --filter=!website",
"typecheck": "yarn turbo typecheck --filter=!website",
"prettier:check": "prettier --check --list-different=false --log-level=warn \"**/*.{ts,tsx,scss,md,mdx,json,js}\"",
"prettier:write": "prettier --list-different \"**/*.{js,ts,tsx,scss,md,mdx,json}\" --write",
"i18n-extract": "yarn workspace @grafana/scenes run i18n-extract"
},
"resolutions": {
"@types/react": "18.2.74",
"@rollup/plugin-eslint/eslint": "^9.28.0"
},
"packageManager": "yarn@4.1.1",
"workspaces": [
"packages/*",
"docusaurus/website"
],
"devDependencies": {
"@auto-it/omit-commits": "^11.0.7",
"@auto-it/released": "^11.0.7",
"@eslint/compat": "1.3.0",
"@eslint/js": "^9.28.0",
"@grafana/eslint-config": "^8.1.0",
"@grafana/tsconfig": "^1.3.0-rc1",
"@stylistic/eslint-plugin-ts": "3.1.0",
"@swc/core": "^1.2.162",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"auto": "^11.0.7",
"esbuild": "^0.25.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "50.7.1",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-matcher-utils": "29.7.0",
"lerna": "^9.0.0",
"lint-staged": "^13.2.0",
"prettier": "2.5.1",
"react-select-event": "^5.5.1",
"rollup": "^4.36.0",
"rollup-plugin-dts": "^6.2.0",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-node-externals": "^8.0.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"turbo": "^2.5.8",
"typescript": "^5.4.3"
}
}