-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
61 lines (61 loc) · 1.67 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
{
"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": "https://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",
"typecheck": "yarn turbo typecheck --filter=!website"
},
"resolutions": {
"@types/react": "18.2.74"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"docusaurus/website"
],
"devDependencies": {
"@auto-it/omit-commits": "^11.0.7",
"@auto-it/released": "^11.0.7",
"@testing-library/react": "^14.1.2",
"auto": "^11.0.7",
"eslint": "^8.57.0",
"lerna": "^6.5.1",
"lint-staged": "^13.2.0",
"prettier": "2.5.1",
"turbo": "latest"
}
}