generated from gapitio/htmlgraphics-svg-bundler-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.56 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
{
"name": "bundle-template",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "run-s lint build:prod build:custom-properties build:svg-data build:panel-options",
"build:custom-properties": "node --experimental-json-modules ./scripts/custom-properties.js",
"build:dev": "rollup -c rollup.config.dev.js",
"build:svg-data": "node ./scripts/svg-data.js",
"build:prod": "rollup -c rollup.config.prod.js ",
"build:panel-options": "node ./scripts/panel-options.js",
"dev": "run-p watch serve:dev",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "eslint . --ext .ts,.js --fix",
"fix:prettier": "prettier --write .",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint . --ext .ts,.js",
"lint:prettier": "prettier --check .",
"serve": "sirv public --single --host",
"serve:dev": "sirv public --single --host --dev",
"watch": "rollup -c rollup.config.dev.js -w"
},
"devDependencies": {
"@gapit/format-si": "^0.0.1",
"@gapit/grafana-metric": "^0.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.36.2",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svgo": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"sirv-cli": "^1.0.10",
"svgo": "^1.3.2",
"typescript": "^4.1.3"
}
}