-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.78 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "fenice",
"version": "0.4.0",
"description": "AI-native, production-ready backend starter — Formray Engineering Guidelines compliant",
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "tsx watch --import ./src/instrumentation.ts src/server.ts",
"dev:typecheck": "tsc --noEmit --watch",
"build": "tsc",
"start": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"validate": "npm run lint && npm run typecheck && npm run test",
"export-schema": "tsx scripts/export-json-schema.ts",
"check-schema-sync": "tsx scripts/check-schema-sync.ts",
"prepare": "husky"
},
"keywords": [
"backend",
"api",
"typescript",
"hono",
"zod",
"ai-native",
"formray"
],
"author": "Giuseppe Albrizio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/formray/fenice.git"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@google-cloud/storage": "^7.19.0",
"@hono/node-server": "^1.19.9",
"@hono/node-ws": "^1.3.0",
"@hono/zod-openapi": "^1.2.2",
"@octokit/rest": "^22.0.1",
"@opentelemetry/auto-instrumentations-node": "^0.70.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.212.0",
"@opentelemetry/resources": "^2.5.1",
"@opentelemetry/sdk-node": "^0.212.0",
"@opentelemetry/semantic-conventions": "^1.39.0",
"bcryptjs": "^3.0.3",
"diff": "^8.0.3",
"dotenv": "^17.3.1",
"firebase-admin": "^13.6.1",
"hono": "^4.12.3",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.2.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"resend": "^6.9.2",
"simple-git": "^3.32.2",
"zod": "^4.3.6"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@scalar/hono-api-reference": "^0.9.44",
"@types/bcryptjs": "^2.4.6",
"@types/diff": "^7.0.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.0",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.5.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"overrides": {
"minimatch": ">=10.2.3"
}
}