-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.08 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ryantxu-firebase-app",
"version": "0.0.1-dev",
"description": "Firebase Grafana App",
"scripts": {
"prebuild": "build/prebuild.sh",
"build": "webpack --config build/webpack.prod.conf.js",
"dev": "webpack --config build/webpack.dev.conf.js",
"test": "jest --config jest.config.js",
"lint": "tslint -c tslint.json --project tsconfig.json",
"format": "prettier-eslint --write \"src/**/*.{ts,tsx,json,css,js,jsx}\""
},
"author": "ryantxu",
"license": "MIT",
"keywords": [
"firebase",
"app",
"grafana",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/ryantxu/grafana-firebase-app.git"
},
"lint-staged": {
"src/**/*.{ts,tsx,json,css,js,jsx}": [
"prettier-eslint"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 100
},
"resolutions": {
"terser": "3.14.1"
},
"dependencies": {
"firebase": "^5.8.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/angular": "^1.6.43",
"@types/grafana": "github:CorpGlory/types-grafana",
"@types/jest": "^23.3.5",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jshint-stylish": "^2.1.0",
"lint-staged": "^8.1.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"ng-annotate-webpack-plugin": "^0.3.0",
"node-sass": "^4.9.3",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.0",
"prettier-eslint-cli": "^4.7.0",
"pretty-quick": "^1.10.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"temp-dir": "^1.0.0",
"text-loader": "0.0.1",
"ts-jest": "^23.10.4",
"ts-loader": "^5.2.1",
"tslint": "^5.11.0",
"typescript": "^3.1.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}