-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.08 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.08 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
{
"name": "flowfull-node",
"version": "0.4.0",
"description": "Standard architecture backend API template with Flowless",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"dev:local": "LOCAL_MODE=true bun run --hot src/index.ts",
"build": "bun build src/index.ts --outdir ./dist --target bun",
"start": "bun run dist/index.js",
"start:local": "LOCAL_MODE=true bun run dist/index.js",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"validate-config": "bun run src/scripts/validate-config.ts",
"local-info": "bun run scripts/show-local-info.ts",
"cleanup-rate-limits": "bun run src/scripts/cleanup-rate-limits.ts",
"rate-limit-stats": "bun run src/scripts/cleanup-rate-limits.ts stats",
"token:generate": "bun run scripts/generate-paseto-key.ts",
"token:test": "bun run scripts/test-trust-tokens.ts"
},
"dependencies": {
"@libsql/client": "^0.4.0",
"@libsql/kysely-libsql": "^0.3.0",
"@neondatabase/serverless": "^0.7.0",
"@planetscale/database": "^1.11.0",
"croner": "^9.0.0",
"hono": "^4.7.10",
"hono-rate-limiter": "^0.4.2",
"ioredis": "^5.8.2",
"kysely": "^0.28.2",
"kysely-d1": "^0.3.0",
"kysely-neon": "^1.3.0",
"kysely-planetscale": "^1.4.0",
"lru-cache": "^11.2.4",
"mysql2": "^3.6.0",
"nanoid": "^5.1.5",
"paseto": "^3.1.4",
"pg": "^8.11.0",
"undici": "^6.0.0",
"zod": "^3.25.30"
},
"devDependencies": {
"@types/bun": "^1.2.14",
"typescript": "^5.8.3",
"@types/pg": "^8.10.0",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"prettier": "^3.1.0"
},
"keywords": [
"backend",
"api",
"template",
"flowless",
"session-validation",
"multi-database",
"bun",
"hono",
"kysely",
"typescript",
"lfu-cache",
"zod"
],
"author": "Pubflow, Inc.",
"license": "Exclusive license - contact legal@pubflow.com for details"
}