forked from grafana/plugin-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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
{
"name": "@grafana/plugin-tools",
"version": "1.0.0",
"repository": "https://github.com/grafana/plugin-tools",
"author": "Grafana",
"private": true,
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"dev": "lerna run dev",
"docs": "yarn workspace website run start",
"docs:build": "yarn workspace website run build",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"release": "auto shipit",
"test": "lerna run test",
"test:ci": "lerna run test --ci",
"typecheck": "lerna run typecheck"
},
"devDependencies": {
"@auto-it/all-contributors": "^10.37.6",
"@auto-it/first-time-contributor": "^10.37.6",
"@auto-it/slack": "^10.37.6",
"@grafana/eslint-config": "^2.5.0",
"@grafana/tsconfig": "^1.2.0-rc1",
"@swc/core": "^1.2.162",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.4.1",
"@types/node": "18.11.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"auto": "^10.37.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"lerna": "^6.0.1",
"nodemon": "^2.0.13",
"prettier": "2.5.1",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=16"
},
"workspaces": [
"packages/create-plugin",
"packages/sign-plugin",
"docusaurus/website"
]
}