forked from Julusian/grafana-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "grafana-github-actions",
"version": "1.2.0",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/julusian/grafana-github-actions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/julusian/grafana-github-actions.git"
},
"bugs": {
"url": "https://github.com/julusian/grafana-github-actions/issues"
},
"private": true,
"type": "module",
"scripts": {
"postinstall": "husky install",
"postinstall:disable": "pinst --disable",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"lint:raw": "yarn eslint --ext .ts --ext .js --ignore-pattern dist",
"lint": "yarn lint:raw .",
"lint-fix": "yarn lint --fix",
"dev": "yarn node --loader ts-node/esm src/index.ts",
"eslint": "./node_modules/.bin/eslint",
"prettier": "./node_modules/.bin/prettier",
"lint-staged": "./node_modules/.bin/lint-staged"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "^2.4.1",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"@types/underscore": "^1.11.4",
"husky": "^8.0.3",
"pinst": "^3.0.0",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "~4.9"
},
"engines": {
"node": "^18.15"
},
"packageManager": "yarn@3.5.0",
"dependencies": {
"@godaddy/terminus": "^4.12.0",
"@octokit/rest": "^19.0.7",
"express": "^4.18.2",
"mysql2": "^3.2.3",
"p-queue": "^7.3.4",
"reissue": "^3.1.0",
"sequelize": "^6.31.0",
"underscore": "^1.13.6"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{json,md}": [
"yarn prettier --write"
],
"*.{ts,js}": [
"yarn lint:raw --fix"
]
}
}