-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.94 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
{
"name": "unwork-scout",
"version": "0.1.4",
"description": "Job Scouting Service",
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shba007/unwork-scout.git"
},
"type": "module",
"private": true,
"engines": {
"node": "^20.15.0 || ^22.11.0",
"pnpm": "^9.15.0 || ^10.2.0",
"bun": "^1.2.9"
},
"packageManager": "bun@1.2.16",
"scripts": {
"prepare": "husky || true",
"postinstall": "nitro prepare && prisma generate",
"dev": "nitro dev",
"detect": "gitleaks git --verbose",
"lint": "eslint . --fix",
"format": "prettier . --write",
"task:scout:remotive": "nitro task run scout:remotive --payload \"{\\\"limit\\\": 100}\"",
"task:filter": "nitro task run filter --payload \"{\\\"category\\\": \\\"Project Management\\\", \\\"daysAgo\\\": 7, \\\"sortBy\\\": \\\"recency\\\"}\"",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:show": "prisma studio",
"build": "nitro build",
"preview": "bun --env-file=.env .output/server/index.mjs",
"start": "bun .output/server/index.mjs",
"clean": "rm -rf .nitro .output",
"docker:build": "docker build --build-arg VERSION_TAG=dev -t unwork-api:dev .",
"docker:start": "docker run --detach --name unwork-api --env-file .env.prod -p 2400:3000 unwork-api:dev",
"tunnel": "npx untun tunnel --port 2400 http://localhost:2400"
},
"dependencies": {
"@prisma/client": "6.6.0",
"date-fns": "^4.1.0",
"nitropack": "^2.11.12",
"prisma": "^6.10.0",
"puppeteer": "^24.10.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-config-unjs": "^0.4.2",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"untun": "^0.1.3"
},
"trustedDependencies": [
"@parcel/watcher"
]
}