-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.88 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
{
"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 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"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": {
"@types/node": "^20.14.8",
"@types/pg": "^8.11.10",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"drizzle-kit": "^0.27.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"tsc-alias": "^1.8.10",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"dependencies": {
"@hono/node-server": "^1.12.0",
"@paralleldrive/cuid2": "^2.2.2",
"@scalar/hono-api-reference": "^0.5.92",
"arctic": "^1.9.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.0",
"hono": "^4.4.11",
"hono-rate-limiter": "^0.4.0",
"lucia": "^3.2.0",
"pg": "^8.13.1",
"zod": "^3.23.8"
}
}