-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
50
51
52
53
54
55
{
"name": "grafana-pocket-datasource",
"version": "1.0.3",
"description": "Grafana data source for Pocket",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test": "jest --config jest.config.js",
"precommit": "lint-staged yarn",
"pretty": "prettier --write src/**/*.ts"
},
"author": "David Kaltschmidt",
"license": "Apache",
"lint-staged": {
"*.{js,ts,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"useTabs": false,
"printWidth": 90,
"bracketSpacing": false,
"semi": true
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/grafana": "github:CorpGlory/types-grafana.git",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.74",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"grafana-sdk-mocks": "github:grafana/grafana-sdk-mocks",
"husky": "^1.0.0-rc.13",
"jest": "^23.0.1",
"lint-staged": "^7.2.0",
"ng-annotate-webpack-plugin": "^0.3.0",
"prettier": "1.10.2",
"release-it": "^8.0.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"style-loader": "^0.21.0",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"typescript": "^2.8.3",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4"
}
}