forked from grafana/grafana-image-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1006 Bytes
/
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
{
"name": "renderer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node build/app.js",
"dev": "tsc-watch --onSuccess \"node build/app.js server --port=3050\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.11.1",
"@types/node": "^10.0.9",
"express": "^4.16.3",
"google-protobuf": "3.5.0",
"grpc": "^1.11.3",
"minimist": "^1.2.0",
"mz": "^2.7.0",
"puppeteer": "^1.4.0",
"typescript": "^2.8.3",
"unique-filename": "^1.1.0"
},
"devDependencies": {
"tsc-watch": "^1.0.21",
"lint-staged": "^6.0.0",
"prettier": "1.9.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
],
"*.scss": [
"prettier --write",
"git add"
],
"*pkg/**/*.go": [
"gofmt -w -s",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120
}
}