-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.63 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
{
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "run-s validate build:rollup build:custom-properties build:svg build:panel-options",
"build:rollup": "rollup -c rollup.config.js ",
"build:custom-properties": "node --experimental-json-modules ./scripts/customProperties.js",
"build:svg": "node ./scripts/svg.js",
"build:panel-options": "node ./scripts/panelOptions.js",
"dev": "vite",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write .",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"typecheck": "tsc --noEmit",
"validate": "run-s typecheck lint",
"watch": "node ./scripts/watch.js"
},
"devDependencies": {
"@grafana/data": "^10.2.0",
"@grafana/runtime": "^10.2.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"chokidar": "^3.5.3",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^49.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"rollup": "^4.3.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-swc3": "^0.10.3",
"svgo": "^3.0.2",
"typescript": "^5.2.2",
"vite": "^4.5.0"
}
}