-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.59 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@jacobtechlabs/api-core",
"description": "JacobTechLabs Fitness API - Developer-first API infrastructure for fitness applications",
"repository": "https://github.com/jacobtechlabs/api-core",
"version": "1.0.0",
"author": "JacobTechLabs <dev@jacobtechlabs.dev>",
"license": "AGPL-3.0",
"type": "module",
"main": "api/index.ts",
"module": "dist/server.js",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"sideEffects": false,
"imports": {
"#modules/*": {
"types": "./src/modules/*/index.d.ts",
"production": "./dist/modules/*/index.js",
"default": "./src/modules/*/"
},
"#common/*": {
"types": "./src/common/*/index.d.ts",
"production": "./dist/common/*/index.js",
"default": "./src/common/*/"
},
"#infra/*": {
"types": "./src/infra/*/index.d.ts",
"production": "./dist/infra/*/index.js",
"default": "./src/infra/*/"
}
},
"scripts": {
"dev": "bun run --hot src/server.ts",
"start": "bun dist/server.js",
"build": "tsc && tsc-alias",
"format": "prettier --write \"./**/*.{js,ts,json}\"",
"lint": "eslint .",
"lint:fix": "bun run lint --fix",
"test": "vitest run",
"test:ui": "vitest --ui",
"deploy": "vercel deploy --prod",
"docker:build": "docker build -t jacobtechlabs-api .",
"docker:run": "docker run -p 3000:3000 jacobtechlabs-api",
"postinstall": "npx simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "bun run lint && bun run format",
"commit-msg": "bun run commitlint --edit $1"
},
"dependencies": {
"@hono/node-server": "^1.12.1",
"@hono/zod-openapi": "^0.15.3",
"@scalar/hono-api-reference": "^0.9.5",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"axios": "^1.7.5",
"form-data": "^4.0.0",
"fuse.js": "^7.1.0",
"hono": "^4.5.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.9.0",
"@types/bun": "latest",
"@types/ioredis": "^5.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.5.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitest/ui": "^2.0.5",
"bun-types": "^1.1.25",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vitest": "^2.0.5"
}
}