-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 961 Bytes
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
{
"name": "github-sentinel",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "bun --hot src/server/index.ts",
"start": "bun src/server/index.ts",
"start:prod": "NODE_ENV=production bun src/server/index.ts",
"build": "bun build.ts",
"service": "bun scripts/service.ts",
"service:install": "bun scripts/service.ts install",
"service:uninstall": "bun scripts/service.ts uninstall",
"service:start": "bun scripts/service.ts start",
"service:stop": "bun scripts/service.ts stop",
"service:restart": "bun scripts/service.ts restart",
"service:status": "bun scripts/service.ts status",
"service:logs": "bun scripts/service.ts logs"
},
"dependencies": {
"bun-plugin-tailwind": "0.1.2",
"geist": "1.7.1",
"react": "19",
"react-dom": "19",
"tailwindcss": "4.1.11"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "19",
"@types/react-dom": "19"
}
}