-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "webstats",
"version": "1.0.0",
"description": "Open-source uptime monitoring on GitHub Actions + Pages",
"private": true,
"scripts": {
"dev": "concurrently \"pnpm site:dev\" \"pnpm runner:dev\"",
"build": "pnpm site:build",
"site:dev": "cd apps/site && pnpm dev",
"site:build": "cd apps/site && pnpm build",
"site:preview": "cd apps/site && pnpm preview",
"runner:check": "node apps/runner/dist/index.js",
"runner:dev": "nodemon --exec ts-node apps/runner/src/index.ts",
"install:deps": "pnpm install && cd apps/site && pnpm install && cd ../runner && pnpm install",
"auto:setup": "bash auto-run.sh auto",
"auto:check": "bash auto-run.sh check",
"auto:status": "bash auto-run.sh status",
"auto:build": "bash auto-run.sh build"
},
"keywords": [
"uptime-monitoring",
"status-page",
"github-actions",
"github-pages"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/node": "^20.12.7"
}
}