-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.78 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.78 KB
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
{
"name": "github-workflow-dispatcher",
"title": "GitHub Workflow Dispatcher",
"version": "1.0.3",
"description": "A small HTTP server using node.js and the hapi framework, that enables you to trigger GitHub Actions workflows using simple links (aka HTTP GET requests).",
"author": "Simon Lepel <simbo@simbo.de> (https://simbo.de/)",
"license": "MIT",
"homepage": "https://github.com/simbo/github-workflow-dispatcher#readme",
"bugs": {
"url": "https://github.com/simbo/github-workflow-dispatcher/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simbo/github-workflow-dispatcher.git"
},
"private": true,
"engines": {
"node": "^18"
},
"type": "module",
"scripts": {
"build": "npm run build:js && npm run build:css && npm run build:server",
"build:server": "rm -rf dist && tsc --project tsconfig.json",
"build:server:watch": "nodemon",
"build:css": "rm -rf static/styles && sass --embed-sources --style=compressed views/styles/:static/styles/",
"build:css:watch": "npm run build:css -- --watch",
"build:js": "rm -rf static/scripts && tsc --project tsconfig.browser.json && ./terser.sh",
"build:js:watch": "nodemon --config nodemon.browser.json",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"preflight": "npm run format && npm run lint && npm run build",
"start": "concurrently --kill-others --names '📜,🎨,🌍' --prefix '{name}' npm:build:js:watch npm:build:css:watch npm:build:server:watch",
"start:prod": "npm run build && node ./dist/main.js",
"upgrade": "npx --yes npm-check-updates -u -t minor && npx --yes npm-check-updates --interactive --reject typescript,@types/node && npm i"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.2",
"@octokit/auth-oauth-app": "^5.0.6",
"@octokit/request": "^6.2.8",
"@octokit/rest": "^19.0.13",
"dotenv": "^16.3.1",
"html-minifier-terser": "^7.2.0",
"joi": "^17.9.2",
"millisecond": "^0.1.2",
"nunjucks": "^3.2.4",
"path-slashes": "^2.0.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@types/hapi__vision": "^5.5.4",
"@types/html-minifier-terser": "^7.0.0",
"@types/millisecond": "^0.1.0",
"@types/node": "18.16.19",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unicorn": "^47.0.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"sass": "^1.63.6",
"terser": "^5.18.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}