-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "blockchainml-mailworker",
"version": "1.0.0",
"description": "BlockchainML Email Worker System",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build ./src/index.ts --outdir ./dist",
"build:watch": "bun build ./src/index.ts --outdir ./dist --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
"format": "prettier --write 'src/**/*.{js,ts,json,md}'",
"type-check": "tsc --noEmit",
"validate": "bun run lint && bun run type-check && bun run test",
"clean": "rimraf dist node_modules",
"docs": "typedoc --out docs src",
"security": "snyk test"
},
"dependencies": {
"@hono/swagger-ui": "^0.4.1",
"@hono/zod-openapi": "^0.16.4",
"@upstash/redis": "^1.34.3",
"bcryptjs": "^2.4.3",
"date-fns": "^2.30.0",
"dotenv": "^16.4.5",
"hono": "^4.6.8",
"html-to-text": "^9.0.5",
"ioredis": "^5.4.1",
"jose": "^5.9.6",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"mongodb": "^6.10.0",
"nanoid": "^5.0.8",
"winston": "^3.15.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "^1.1.12",
"@types/ioredis": "^5.0.0",
"@types/node": "^22.8.5",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"snyk": "^1.1294.0",
"typedoc": "^0.25.13",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"keywords": [
"email",
"worker",
"blockchain",
"ml"
],
"author": "Bezata <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bezata/blockchainml-mailworker.git"
},
"bugs": {
"url": "https://github.com/bezata/blockchainml-mailworker/issues"
},
"homepage": "https://github.com/bezata/blockchainml-mailworker#readme"
}