forked from grafana/scenes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.45 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
{
"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 workspace website run build",
"test:lib": "lerna run test --scope '@grafana/scenes' --",
"dev:lib": "lerna run dev --scope '@grafana/scenes' --",
"dev:app": "lerna run dev --scope 'scenes-app' --",
"test": "lerna run test --scope '@grafana/scenes' -- --watch",
"typecheck": "lerna run typecheck"
},
"resolutions": {
"@types/react": "17.0.42"
},
"packageManager": "[email protected]",
"workspaces": [
".",
"packages/*",
"docusaurus/website"
],
"devDependencies": {
"@auto-it/omit-commits": "^10.43.0",
"@auto-it/released": "^10.43.0",
"auto": "^10.43.0",
"lerna": "^6.5.1",
"lint-staged": "^13.2.0"
}
}