-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "grafana-plugin-cli",
"version": "0.0.1",
"description": "CLI tool for generation Grafana plugin project in different confs",
"main": "index.ts",
"scripts": {
"test": "jest --config jest.config.js",
"build": "webpack --config build/webpack.prod.conf.js",
"dev": "webpack --config build/webpack.dev.conf.js",
"start": "node ./dist/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CorpGlory/grafana-plugin-cli.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/CorpGlory/grafana-plugin-cli/issues"
},
"homepage": "https://github.com/CorpGlory/grafana-plugin-cli#readme",
"devDependencies": {
"@types/inquirer": "0.0.43",
"@types/jest": "^23.1.1",
"@types/lodash": "^4.14.119",
"@webpack-cli/init": "^0.1.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.6.0",
"raw-loader": "^1.0.0",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.2",
"typescript": "^2.9.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"ejs": "^2.6.1",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"lodash": "^4.17.11"
}
}