forked from grafana/plugin-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "@grafana/plugin-tools",
"version": "1.0.0",
"repository": "https://github.com/grafana/plugin-tools",
"author": "Grafana",
"private": true,
"scripts": {
"clean": "nx run-many --target=clean",
"build": "nx run-many --target=build --parallel --exclude website",
"dev": "nx run-many --target=dev --parallel",
"docs": "nx run website:start",
"docs:clear": "nx run website:clear",
"docs:build": "nx run website:build",
"lint": "nx run-many --target=lint --parallel",
"lint:fix": "nx run-many --target=lint:fix --parallel",
"release": "auto shipit",
"test": "nx run-many --target=test --parallel",
"test:ci": "nx run-many --target=test --ci",
"typecheck": "nx run-many --target=typecheck --parallel"
},
"devDependencies": {
"@auto-it/all-contributors": "^10.46.0",
"@auto-it/first-time-contributor": "^10.46.0",
"@auto-it/omit-commits": "^10.46.0",
"@auto-it/slack": "^10.46.0",
"@grafana/eslint-config": "^5.1.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",
"auto": "^10.46.0",
"jest": "^27.5.1",
"lerna": "^6.6.2",
"nodemon": "^2.0.13",
"nx": "16.2.1",
"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"
]
}