-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.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.3.1",
"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",
"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.5.2",
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"@types/underscore": "^1.11.15",
"husky": "^9.0.11",
"pinst": "^3.0.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "~4.9.5"
},
"engines": {
"node": "^20.11"
},
"packageManager": "[email protected]",
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"@octokit/rest": "^20.0.2",
"express": "^4.18.3",
"mysql2": "^3.9.2",
"p-queue": "^8.0.1",
"reissue": "^3.1.0",
"sequelize": "^6.37.1",
"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"
]
}
}