-
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.7 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.7 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": "unauth-api",
"version": "0.3.12",
"description": "Authentication Service",
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shba007/unauth-api.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",
"build": "nitro build",
"preview": "node --env-file=.env .output/server/index.mjs",
"start": "node .output/server/index.mjs",
"clean": "rm -rf .nitro .output",
"docker:build": "docker build --build-arg VERSION_TAG=dev -t unauth-api:dev .",
"docker:start": "docker run --detach --name unauth-api-dev --env-file .env.prod -p 2210:3000 unauth-api:dev",
"tunnel": "untun tunnel --port 2210 http://localhost:2210"
},
"dependencies": {
"@prisma/client": "^6.10.0",
"jsonwebtoken": "^9.0.2",
"nitropack": "^2.11.12",
"ofetch": "^1.4.1",
"prisma": "^6.10.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/jsonwebtoken": "^9.0.10",
"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",
"@prisma/client",
"@prisma/engines",
"esbuild",
"prisma"
]
}