Simple CLI for running grafana in dev env
Showing
... | @@ -17,7 +17,9 @@ | ... | @@ -17,7 +17,9 @@ |
"@babel/preset-react": "^7.0.0", | "@babel/preset-react": "^7.0.0", | ||
"@babel/preset-typescript": "^7.1.0", | "@babel/preset-typescript": "^7.1.0", | ||
"@rtsao/plugin-proposal-class-properties": "^7.0.1-patch.1", | "@rtsao/plugin-proposal-class-properties": "^7.0.1-patch.1", | ||
"@types/chalk": "^2.2.0", | |||
"@types/classnames": "^2.2.6", | "@types/classnames": "^2.2.6", | ||
"@types/commander": "^2.12.2", | |||
"@types/d3": "^4.10.1", | "@types/d3": "^4.10.1", | ||
"@types/enzyme": "^3.1.13", | "@types/enzyme": "^3.1.13", | ||
"@types/jest": "^23.3.2", | "@types/jest": "^23.3.2", | ||
... | @@ -36,6 +38,7 @@ | ... | @@ -36,6 +38,7 @@ |
"babel-jest": "^23.6.0", | "babel-jest": "^23.6.0", | ||
"babel-loader": "^8.0.4", | "babel-loader": "^8.0.4", | ||
"babel-plugin-angularjs-annotate": "^0.9.0", | "babel-plugin-angularjs-annotate": "^0.9.0", | ||
"chalk": "^2.4.2", | |||
"clean-webpack-plugin": "^0.1.19", | "clean-webpack-plugin": "^0.1.19", | ||
"concurrently": "^4.1.0", | "concurrently": "^4.1.0", | ||
"css-loader": "^0.28.7", | "css-loader": "^0.28.7", | ||
... | @@ -114,7 +117,9 @@ | ... | @@ -114,7 +117,9 @@ |
}, | }, | ||
"scripts": { | "scripts": { | ||
"dev": "webpack --progress --colors --mode development --config scripts/webpack/webpack.dev.js", | "dev": "webpack --progress --colors --mode development --config scripts/webpack/webpack.dev.js", | ||
"start": "node ./scripts/cli/start.js", | "start": "ts-node --project ./scripts/cli/tsconfig.json ./scripts/cli/index.ts --theme", | ||
"start:hot": "ts-node --project ./scripts/cli/tsconfig.json ./scripts/cli/index.ts --hot --theme", | |||
"start:ignoreTheme": "ts-node --project ./scripts/cli/tsconfig.json ./scripts/cli/index.ts --hot", | |||
"watch": "webpack --progress --colors --watch --mode development --config scripts/webpack/webpack.dev.js", | "watch": "webpack --progress --colors --watch --mode development --config scripts/webpack/webpack.dev.js", | ||
"build": "grunt build", | "build": "grunt build", | ||
"test": "grunt test", | "test": "grunt test", | ||
... | ... |
scripts/cli/index.ts
0 → 100644
Please
register
or
sign in
to comment