-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 KB
/
package.json
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
{
"name": "simple-logging-server",
"license": "MIT",
"version": "2.3.5",
"description": "This is a simple API for logging messages",
"author": "Sean Cassiere",
"keywords": [],
"private": true,
"packageManager": "[email protected]",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"lint": "eslint --max-warnings=0 src",
"lint:fix": "eslint --fix --max-warnings=0 src",
"format": "prettier --write .",
"start": "NODE_ENV=production node dist/index.mjs",
"dev": "NODE_ENV=development tsx --watch ./src/index.mts",
"test": "NODE_ENV=test vitest",
"test:ci": "NODE_ENV=ci vitest run",
"build:kill-dist": "rimraf ./dist",
"build:code": "tsc && tsc-alias",
"build": "pnpm run build:kill-dist && pnpm run build:code",
"postbuild": "node postbuild.mjs",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:check": "drizzle-kit check",
"db:up": "drizzle-kit up"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.1",
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.30.4",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"@paralleldrive/cuid2": "^2.2.2",
"@scalar/hono-api-reference": "^0.5.172",
"arctic": "^3.2.4",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.39.3",
"hono": "^4.7.0",
"hono-rate-limiter": "^0.4.2",
"lucia": "^3.2.2",
"pg": "^8.13.1",
"zod": "^3.24.1"
}
}