-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "@grafana/dataplane",
"version": "0.0.1",
"description": "Grafana dataplane",
"main": "dist/index.js",
"private": true,
"workspaces": [
"sdata",
"docusaurus/website",
"examples"
],
"scripts": {
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"docs": "turbo run docs:start",
"docs:build": "turbo run docs:build",
"docs:build:devportal:dev": "turbo docs:build -- --config=docusaurus.config.devportal.js",
"docs:build:devportal:prod": "turbo docs:build -- --config=docusaurus.config.devportal.prod.js",
"test:backend": "turbo run test:backend",
"test": "turbo run test:backend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grafana/dataplane.git"
},
"keywords": [],
"author": "Grafana Labs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/grafana/dataplane/issues"
},
"homepage": "https://github.com/grafana/dataplane#readme",
"packageManager": "[email protected]",
"devDependencies": {
"cspell": "8.9.1",
"turbo": "2.0.5"
}
}